-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "rollup-plugin-hash",
"version": "1.3.0",
"description": "Rollup plugin to add a checksum to your destination filename",
"main": "dist/rollup-plugin-hash.js",
"module": "dist/rollup-plugin-hash.es.js",
"jsnext:main": "dist/rollup-plugin-hash.es.js",
"repository": "http://github.com/phamann/rollup-plugin-hash",
"author": "Patrick Hamann",
"license": "MIT",
"keywords": [
"rollup",
"rollup-plugin",
"hash",
"rev"
],
"scripts": {
"lint": "eslint src/index.js",
"pretest": "npm run build",
"test": "mocha",
"build": "rollup -c",
"prepublish": "npm run lint && npm test && npm run build"
},
"devDependencies": {
"buble": "^0.15.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-spies": "^0.7.1",
"eslint": "^3.13.1",
"mocha": "^3.2.0",
"rollup": "^0.48.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0"
},
"dependencies": {
"hasha": "^2.2.0"
},
"files": [
"dist",
"README.md"
]
}