-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.09 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
{
"name": "JS-code-checker",
"version": "0.0.1",
"description": "Simple project that uses a Javascript parser to inspect JS code and test rules",
"scripts": {
"build": "webpack --config webpack.config.prod.js --progress --profile --colors",
"dev": "webpack-dev-server --progress --profile --colors --hot",
"test": "node_modules/.bin/mocha --require babel-core/register -w"
},
"repository": {
"type": "git",
"url": "https://github.com/altaha/"
},
"author": "Ahmed Altaha",
"license": "GPL-3.0",
"homepage": "https://github.com/altaha/",
"dependencies": {
"codemirror": "^5.13.0",
"esprima": "^2.7.2",
"operative": "^0.4.4",
"react": "0.14.7",
"react-codemirror": "^0.2.5",
"react-dom": "0.14.6"
},
"devDependencies": {
"babel-core": "6.7.0",
"babel-loader": "6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
}
}