This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.3 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
125
126
127
128
{
"name": "webcompiler",
"version": "7.0.1",
"description": "Lint, type-check, compile, package and gzip JavaScript (ES6 + Flow static types + JSX), for the browser as well as NodeJS; lint, compile, auto-prefix, minify and gzip SASS.",
"main": "lib/index.js",
"engines": {
"node": ">=6.10.2",
"npm": ">=3.10.10"
},
"scripts": {
"test": "babel-node node_modules/.bin/isparta cover _mocha --root src -- -R nyan",
"docs-build": "babel-node bin/docs",
"docs-watch": "babel-node bin/docs-watch",
"lint": "flow && eslint .",
"build": "babel-node bin/build",
"release": "release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thealjey/webcompiler.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
".eslintrc.yaml",
".stylelintrc.yaml",
".babelrc",
"commentsOnly.js",
"jsdoc.json",
"src/typedef.js",
"lib",
"interfaces"
],
"keywords": [
"lint",
"typecheck",
"compile",
"package",
"uglify",
"minify",
"uglify",
"es6",
"es7",
"javascript",
"sass",
"jsx",
"react",
"ecosystem-react",
"flow",
"gzip",
"jsdoc",
"syntax highlighter",
"isomorphic console.log",
"markdown",
"watcher",
"yaml"
],
"author": "Eugene Kuzmenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/thealjey/webcompiler/issues"
},
"homepage": "https://thealjey.github.io/webcompiler",
"dependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"cheerio": "^0.22.0",
"clean-stack": "^1.1.1",
"codemirror": "^5.25.2",
"cross-spawn": "^5.1.0",
"docdash": "^0.4.0",
"error-stack-parser": "^2.0.0",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-lodash": "^2.4.0",
"eslint-plugin-react": "^6.10.3",
"fb-watchman": "^2.0.0",
"flow-bin": "^0.44.2",
"js-yaml": "^3.8.3",
"jsdoc": "^3.4.3",
"jsdom": "^9.12.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"memory-fs": "^0.4.1",
"mkdirp": "^0.5.1",
"node-sass": "^4.5.2",
"node-sass-import-once": "^1.2.0",
"null-loader": "^0.1.1",
"postcss": "^5.2.17",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.1",
"remarkable": "^1.7.1",
"serve-static": "^1.12.1",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-scss": "^1.4.4",
"tiny-lr": "^1.0.3",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.3"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"mt-changelog": "^0.6.2",
"proxyquire": "^1.7.11",
"release-script": "^1.0.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
}
}