-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.12 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
{
"name": "rework-assets",
"version": "1.1.1",
"description": "Copy all assets referenced to a folder",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "tap test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/conradz/rework-assets.git"
},
"keywords": [
"rework",
"css",
"assets",
"build",
"static",
"files"
],
"author": "Conrad Zimmerman <me@conradz.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/conradz/rework-assets/issues"
},
"homepage": "https://github.com/conradz/rework-assets",
"devDependencies": {
"eslint": "^1.10.3",
"jshint": "^2.9.1",
"rework": "^1.0.1",
"rework-npm": "^1.0.0",
"rimraf": "^2.5.1",
"tap": "^5.4.2"
},
"dependencies": {
"mkdirp": "^0.5.1",
"rework-plugin-function": "^1.0.2"
},
"eslintConfig": {
"env": {
"node": true
},
"rules": {
"indent": 2,
"no-use-before-define": [
2,
"nofunc"
],
"quotes": [
2,
"single"
]
},
"extends": "eslint:recommended"
}
}