-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "webpack-sha-hash",
"version": "2.0.0",
"description": "Plugin to replace a standard webpack chunkhash with SHA",
"author": {
"name": "Sebastien Dubois",
"email": "seb@dsebastien.net",
"url": "https://www.dsebastien.net/"
},
"contributors": [],
"homepage": "https://npmjs.com/package/webpack-sha-hash",
"private": false,
"license": "MIT",
"bugs": "https://github.com/dsebastien/webpack-sha-hash/issues",
"repository": {
"type": "git",
"url": "git@github.com:dsebastien/webpack-sha-hash.git"
},
"keywords": [
"webpack",
"plugin",
"hash",
"sha",
"sha1",
"sha256",
"sha512"
],
"dependencies": {
"sha.js": "2.4.9"
},
"devDependencies": {
"argparse": "1.0.x",
"jasmine-node": "1.14.x",
"jshint": "2.9.x",
"jscs": "2.9.x",
"rimraf": "2.5.x",
"webpack": "1.12.x",
"babel-cli": "6.5.x",
"babel-plugin-transform-es2015-modules-commonjs": "6.5.x",
"babel-preset-es2015": "6.5.x"
},
"main": "dist/index.js",
"files": [
"dist"
],
"directories": {
"lib": "./dist"
},
"engines": {
"node": ">=4.3.0",
"npm": ">=3.7.3"
},
"scripts": {
"clean": "rimraf dist .tmp",
"check-style": "jscs .",
"check-quality": "jshint",
"lint": "npm run check-style && npm run check-quality",
"pretest": "npm run build",
"test": "jasmine-node --captureExceptions spec",
"prebuild": "npm run clean",
"build": "babel src -d dist",
"compile": "npm run build",
"start": "npm run build",
"setup": "npm install --no-optional",
"prepublish": "npm run test && npm run lint"
}
}