This repository was archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 KB
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
{
"name": "de-dupe",
"bin": ".bin/de-dupe",
"version": "1.1.13",
"description": "Deduplicate strings from javascript assets",
"main": "index.js",
"scripts": {
"prepublish": "npm test && npm run build",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"test": "npm run lint && rollup -c -o tests.js -i tests/index.ts && mocha tests.js",
"build": "npm run build:index && npm run build:cli && npm run build:declarations",
"build:declarations": "tsc -d && mv tmp/src/index.d.ts ./index.d.ts",
"build:index": "rollup -c -o index.js -i src/index.ts",
"build:cli": "rollup -c -o cli.js -i src/cli.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/markis/de-dupe.git"
},
"keywords": [
"minify",
"dedupify",
"dedupe",
"strings"
],
"author": "Markis Taylor <m@rkis.cc>",
"license": "MIT",
"bugs": {
"url": "https://github.com/markis/de-dupe/issues"
},
"homepage": "https://github.com/markis/de-dupe#readme",
"dependencies": {
"typescript": "4.1.2"
},
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.0.4",
"@types/node": "14.14.10",
"chai": "4.2.0",
"mocha": "8.2.1",
"rollup": "2.33.3",
"rollup-plugin-typescript": "1.0.1",
"tslint": "5.20.0"
}
}