-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.06 KB
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
{
"name": "code-analysis-web",
"version": "1.0.0",
"description": "See comments in `index.html` for instructions.",
"main": "index.js",
"dependencies": {
"functional-pipeline": "^0.4.1",
"fuzzy": "^0.1.3",
"lodash": "^4.17.2",
"react": "^15.4.0",
"react-dom": "^15.4.0"
},
"devDependencies": {
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserfy": "^1.0.0",
"uglify": "^0.1.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t [ babelify --presets [ react ] ] src/main.js -o build/app.js",
"client": "http-server -p 8089 -s",
"uglify": "uglifyjs -c -v -o build/app.min.js build/app.js",
"onchange-app": "onchange src/main.js -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/two7sclash/code-analysis-web.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/two7sclash/code-analysis-web/issues"
},
"homepage": "https://github.com/two7sclash/code-analysis-web#readme"
}