-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "gulp-revisioner",
"version": "0.2.0",
"description": "Creates a query string based cache busting manifest to invalidate the cache of files on the browser.",
"main": "lib/index.js",
"repository": "https://github.com/khalyomede/gulp-revisioner",
"author": "Khalyomede <khalyomede@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@rollup/plugin-commonjs": "15.*",
"@rollup/plugin-node-resolve": "9.*",
"@rollup/plugin-typescript": "6.*",
"@types/chai": "4.*",
"@types/mocha": "8.*",
"@types/node": "14.*",
"chai": "4.*",
"mocha": "8.*",
"np": "6.*",
"npm-check-updates": "9.*",
"nyc": "15.*",
"rollup": "2.*",
"rollup-plugin-tslint": "0.2.*",
"ts-node": "9.*",
"tslib": "2.*",
"typescript": "4.*"
},
"scripts": {
"build": "ncu && rollup -c && tsc --declaration --emitDeclarationOnly --declarationDir lib src/index.ts",
"test": "nyc mocha --require ts-node/register tests/**/*.ts",
"release": "np"
},
"keywords": [
"gulpplugin",
"revision",
"rev",
"cache busting",
"query string"
],
"files": [
"lib/type/GulpCallback.d.ts",
"lib/get-base-url.d.ts",
"lib/get-file-hash.d.ts",
"lib/get-file-path.d.ts",
"lib/get-json-from-file.d.ts",
"lib/get-revision-key.d.ts",
"lib/get-revision-value.d.ts",
"lib/IFile.d.ts",
"lib/IJson.d.ts",
"lib/index.d.ts",
"lib/index.js",
"lib/IOptions.d.ts",
"lib/is-boolean.d.ts",
"lib/is-integer.d.ts",
"lib/is-object.d.ts",
"lib/is-string.d.ts",
"lib/parse-options.d.ts",
"lib/write-json-to-file.d.ts",
"lib/write-manifest.d.ts"
]
}