-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.06 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
{
"name": "ts-util",
"version": "0.0.4",
"description": "Java like Collection Framework and Data Structures (java.util package) for TypeScript. ",
"keywords": [
"collection",
"map",
"data structures",
"set",
"iterator"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"suite-builder": "suite-builder",
"pretest": "suite-builder tests/ && tsc && tsc tests/suite.ts -t ES5 --sourceMap",
"test": "node tests/suite.js",
"istanbul": "istanbul",
"remap-istanbul": "remap-istanbul",
"coverage": "npm run pretest && rm -rf coverage/* && istanbul cover tests/suite.js && remap-istanbul --input coverage/coverage.json --output coverage/html-report --type html && remap-istanbul --input coverage/coverage.json --output coverage/coverage-final.json"
},
"author": "samizdam <[email protected]>",
"license": "BSD-2-Clause",
"devDependencies": {
"istanbul": "^0.4.5",
"remap-istanbul": "^0.7.0",
"ts-x-unit": "^0.12.1",
"typescript": "^2.0"
}
}