-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
37
38
39
40
41
42
{
"name": "roadmap",
"version": "1.0.0",
"description": "",
"main": "roadmap.js",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "webpack --config webpack.config.js",
"build": "npm run clean && npm run build:webpack",
"devbuild:webpack": "webpack --config webpack.devconfig.js",
"devbuild": "npm run clean && npm run devbuild:webpack",
"lint": "eslint source",
"start": "http-server",
"watch": "watch 'clear && npm run lint -s && npm run test -s' source",
"check": "npm run lint && npm run test && npm outdated --depth=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secutix/roadmap.git"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"eslint": "^1.3.1",
"rimraf": "^2.4.3",
"watch": "^0.16.0",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"author": "bbaliguet",
"license": "MIT",
"bugs": {
"url": "https://github.com/secutix/roadmap/issues"
},
"homepage": "https://github.com/secutix/roadmap",
"dependencies": {
"jquery": "^2.1.4"
}
}