-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "ts-ds-tool",
"version": "0.1.5",
"description": "Data structure and algorithm of TypeScript",
"main": "dist/data-structure.js",
"module": "dist/data-structure.es.js",
"typings": "./resource/index.d.ts",
"typescript": {
"definition": "resource/index.d.ts"
},
"scripts": {
"build": "run-s tsc build:*",
"build:dist": "run-s clean:dist bundle:dist bundle:es",
"clean:dist": "rimraf dist",
"bundle:dist": "rollup -c ./script/rollup-config.js",
"bundle:es": "rollup -c ./script/rollup-config-es.js",
"lint": "run-s lint:simple lint:tree",
"lint:simple": "tslint --project tsconfig.json src/*/*.ts",
"lint:tree": "tslint --project tsconfig.json src/tree/*/*.ts",
"test": "jest",
"ci": "npm run test -- --coverage",
"codecov": "codecov",
"tsc": "tsc -p tsconfig.json"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "[email protected]:HaifengDu/ts-ds-tool.git"
},
"keywords": [
"data collection",
"data structures",
"data-collection",
"data-structures",
"data",
"algorithms",
"structures",
"typescript",
"javascript"
],
"author": "dhf <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.1",
"codecov": "^3.1.0",
"jest": "^23.5.0",
"npm-run-all": "^4.1.3",
"pre-commit": "^1.2.2",
"rollup": "0.59.1",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-json": "3.0.0",
"rollup-plugin-strip-banner": "0.2.0",
"run-sequence": "2.2.1",
"ts-jest": "^23.1.4",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3",
"uglify-js": "2.8.11",
"uglify-save-license": "0.4.1"
}
}