-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "get-sri",
"version": "1.0.2",
"description": "Generates the SRI hash of the given string to use with CDN resources without publishing the content to a CDN.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/ntbx/get-sri#readme",
"author": "Richard Szakacs <richardszkcs@gmail.com> (www.richardszkcs.com)",
"directories": {
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntbx/get-sri.git"
},
"bugs": {
"url": "https://github.com/ntbx/get-sri/issues"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"keywords": [
"sri",
"cdn",
"hash",
"sha256",
"sha384",
"sha512",
"subresource",
"integrity",
"subresource-integrity"
],
"scripts": {
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix",
"gulp": "gulp --gulpfile task/index.js",
"gulp:silent": "gulp --gulpfile task/index.js --silent",
"build": "npm run gulp -- build",
"doc": "npm run gulp -- doc",
"dev": "npm run build && tap --coverage-report=text-summary --100 test/*.test.js",
"dev:one": "npm run build && tap",
"test": "npm run lint && npm run build && npm run doc && tap --100 test/*.test.js",
"precommit": "npm run precommit:script --silent",
"precommit:script": "npm run lint --silent && npm run gulp:silent build && npm run gulp:silent doc && tap --reporter=silent --no-coverage-report --100 test/*.test.js",
"release": "npm run gulp -- release"
},
"devDependencies": {
"fancy-log": "^1.3.2",
"file-is-binary": "^1.0.0",
"gulp": "^4.0.0",
"husky": "^0.14.3",
"jsdoc-to-markdown": "^4.0.1",
"plugin-error": "^1.0.1",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"tap": "^12.0.1",
"through2": "^2.0.3",
"vinyl": "^2.2.0"
}
}