-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 961 Bytes
/
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": "naacl-demo",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --hot --inline",
"lint": "eslint js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcotcr/naacl-demo.git"
},
"author": "Marco Tulio Ribeiro <marcotcr@gmail.com>",
"license": "TODO",
"bugs": {
"url": "https://github.com/marcotcr/naacl-demo/issues"
},
"homepage": "https://github.com/marcotcr/naacl-demo#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.0.15",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"node-libs-browser": "^0.5.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"d3": "^3.5.17",
"lodash": "^4.11.2"
}
}