-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.79 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
{
"name": "prototype-app",
"description": "Prototype a web app.",
"version": "0.0.0-1",
"author": {
"name": "Ray Patterson",
"email": "github.raypatterson@gmail.com"
},
"bugs": "https://github.com/raypatterson/prototype-app/issues",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"dependencies": {
"bootstrap-sass": "~3.3.7",
"fastclick": "~1.0.6",
"font-awesome": "~4.7.0",
"hack-font": "~2.0.19"
},
"devDependencies": {
"@raypatterson/full-metal-webpack": "git+ssh://git@github.com/raypatterson/full-metal-webpack#master",
"commitizen": "~2.9.5",
"cz-conventional-changelog": "~1.2.0",
"eslint": "~3.14.0",
"eslint-config-xo": "~0.17.0",
"fixpack": "~2.3.1",
"ghooks": "~2.0.0",
"npm-autolink": "~0.4.1",
"npm-link-check": "~1.2.0",
"npm-run-all": "~4.0.1",
"ntl": "~1.1.3",
"updtr": "~0.2.3"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/raypatterson/prototype-app/",
"keywords": [
"app",
"prototype",
"web"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "Ray Patterson",
"email": "github.raypatterson@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git@github.com:raypatterson/prototype-app.git"
},
"scripts": {
"build": "fmw --clean --production --config ./fmw.production.config.js",
"commit": "git-cz",
"dev": "fmw",
"link": "npm-autolink link",
"link:rm": "npm-autolink remove",
"lint": "eslint --fix src",
"ls": "ntl .",
"test": "npm-run-all --parallel test:*",
"test:link": "npm-link-check",
"upgrade": "updtr && fixpack"
}
}