-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 1.6 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
73
74
75
76
77
78
{
"name": "npm-assets",
"version": "0.0.0-development",
"description": "Bundle static files with NPM packages",
"keywords": [
"assets",
"bundle",
"files",
"web"
],
"bugs": {
"url": "https://github.com/conradz/npm-assets/issues"
},
"license": "BSD",
"author": "Conrad Zimmerman <me@conradz.com>",
"contributors": [
"Keith Cirkel (http://keithcirkel.co.uk)"
],
"main": "index.js",
"bin": {
"npm-assets": "bin/npm-assets"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/conradz/npm-assets.git"
},
"scripts": {
"pretest": "eslint .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "tap test.js"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"eslintConfig": {
"extends": [
"strict/es5"
],
"rules": {
"no-magic-numbers": 0,
"id-length": [
2,
{
"min": 2,
"max": 20,
"exceptions": [
"i",
"n",
"t"
]
}
],
"no-use-before-define": 0
}
},
"dependencies": {
"async": "^1.5.1",
"find-modules": "~0.2.0",
"graceful-fs": "^4.1.9",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-strict": "^7.0.4",
"eslint-plugin-filenames": "^0.2.0",
"ghooks": "^1.0.1",
"rimraf": "^2.5.0",
"semantic-release": "^4.3.5",
"tap": "^5.0.0",
"travis-after-all": "^1.4.4",
"validate-commit-msg": "^1.0.0"
},
"engines": {
"node": ">=0.12"
}
}