-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@frontender-magazine/article-builder",
"version": "1.4.0",
"description": "Build article from repo",
"main": "lib/index.js",
"scripts": {
"postversion": "git push && git push --tags",
"version": "npm run build:prod && git add . -A",
"major": "npm version major && npm publish --tag latest --access public",
"minor": "npm version minor && npm publish --tag latest --access public",
"patch": "npm version patch && npm publish --tag latest --access public",
"dopreminor": "npm version preminor && npm publish --tag next --access public",
"dopremajor": "npm version premajor && npm publish --tag next --access public",
"doprepatch": "npm version prepatch && npm publish --tag next --access public",
"clean": "rimraf public lib",
"build": "npm run build:dev",
"build:watch": "babel source/index.js -w -s true -d lib",
"build:dev": "babel source/index.js -s true -d lib",
"build:prod": "npm run clean && babel source/index.js --minified -s true -d lib && npm run build:doc && npm run build:readme",
"build:doc": "documentation build source/index.js -o doc -f html",
"build:readme": "documentation readme source/index.js -s 'Documentation'",
"lint": "npm run format && npm-run-all lint:*",
"lint:js": "eslint ./source/** --ext .jsx,.js --color -f stylish --fix",
"test": "jest",
"minify": "minify lib -d lib --removeConsole --removeDebugger",
"format": "prettier --write --single-quote --print-width 100 --trailing-comma all 'source/**/*.{js,jsx}'",
"precommit": "git add . -A && lint-staged"
},
"lint-staged": {
"*.{jsx,js}": [
"npm run format",
"eslint --color -f stylish --fix",
"git add . -A"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/FrontenderMagazineDevelopment/article-builder.git"
},
"keywords": [
"Frontender Magazine",
"fm"
],
"author": "Anton Nremtsev <[email protected]>",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/FrontenderMagazineDevelopment/article-builder/issues"
},
"homepage": "https://github.com/FrontenderMagazineDevelopment/article-builder#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@plasma-platform/tm-message-hook": "^2.0.14",
"babel-eslint": "^10.0.1",
"documentation": "^10.1.0",
"enzyme": "^3.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-ejs": "0.0.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"gulp": "^4.0.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.1",
"gulp-order": "^1.2.0",
"gulp-postcss": "^8.0.0",
"husky": "^2.2.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-enzyme": "^7.0.2",
"lint-staged": "^8.1.6",
"nock": "^10.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"@frontender-magazine/fm-article": "^1.6.1",
"@frontender-magazine/github-sdk": "^1.2.2",
"@frontender-magazine/mercury-sdk": "^3.0.0",
"@octokit/rest": "^16.25.2",
"adm-zip": "^0.4.13",
"autoprefixer": "^9.5.1",
"breakdance": "^3.0.1",
"breakdance-reflinks": "^0.1.4",
"chalk": "^2.4.2",
"command-line-args": "^5.1.1",
"dotenv": "^8.0.0",
"download": "^7.1.0",
"ejs": "^2.6.1",
"got": "^9.6.0",
"highlight.js": "^9.15.6",
"image-downloader": "^3.4.2",
"isomorphic-fetch": "^2.2.1",
"joi": "^14.3.1",
"jsdom": "^15.0.0",
"markdown": "^0.5.0",
"markdown-it": "^8.4.2",
"mongoose": "^5.5.5",
"postcss-conditionals": "^2.1.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.1",
"postcss-nested": "^4.1.2",
"postcss-simple-vars": "^5.0.2",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"remove-markdown": "^0.3.0",
"rimraf": "^2.6.3",
"turndown": "^5.0.3",
"turndown-plugin-gfm": "^1.0.2",
"url": "^0.11.0",
"url-to-options": "^2.0.0"
}
}