forked from nibynool/node-version-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.29 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
{
"name": "node-version-assets",
"version": "1.3.0",
"description": "version your static assets",
"license": "MIT",
"main": "index.js",
"bin": "./bin/index.js",
"scripts": {
"start": "node index.js",
"test": "tap ./test/*.test.js",
"pretest": "node ./test-utils/pre-post-test.js",
"posttest": "node ./test-utils/pre-post-test.js"
},
"author": "Andrew Griffiths <mail@andrewgriffithsonline.com>",
"maintainers": [
{
"name": "Andrew Griffiths",
"email": "mail@andrewgriffithsonline.com",
"web": "http://projects.andrewgriffithsonline.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/techjacker/node-version-assets"
},
"github": "https://github.com/techjacker/node-version-assets",
"engineStrict": true,
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/techjacker/node-version-assets/issues"
},
"tags": [
"static",
"performance",
"assets",
"version",
"versioning"
],
"keywords": [
"static",
"performance",
"assets",
"version",
"versioning"
],
"dependencies": {
"async": "^3.2.4",
"commander": "^2.18.0",
"glob": "^6.0.1",
"underscore": "^1.13.6"
},
"devDependencies": {
"curry": "~1.2.0",
"tap": "~2.2.0"
}
}