-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.16 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
{
"name": "ts-it-types",
"version": "1.1.5",
"description": "TypeScript Useful Types",
"repository": {
"type": "git",
"url": "https://github.com/reforms/ts-types.git"
},
"homepage": "https://github.com/reforms/ts-types",
"bugs": {
"url": "https://github.com/reforms/ts-types/issues"
},
"files": [
"dist",
"src"
],
"main": "dist/commonjs/ts_it_types.js",
"jsnext:main": "dist/es/ts_it_types.js",
"module": "dist/es/ts_it_types.js",
"types": "dist/types/ts_it_types.d.ts",
"scripts": {
"clean:dist": "rimraf dist",
"clean:pack": "rimraf ts_it_types-*.tgz",
"compile": "tsc --project tsconfig-single.json --noEmit --pretty --noErrorTruncation",
"lint": "tslint --config tslint.json --project tsconfig-single.json",
"lint:fix": "npm run lint -- --fix",
"concat": "concat-cli -f src/ts/*.ts -o src/ts-out/ts_it_types.ts",
"build:types": "tsc --project tsconfig-single.json --pretty --noErrorTruncation --emitDeclarationOnly true --declarationMap true --outDir dist/types",
"build:commonjs": "tsc --project tsconfig-single.json --pretty --noErrorTruncation --declaration false --outDir dist/commonjs",
"build:es": "tsc --project tsconfig-single.json --pretty --noErrorTruncation --declaration false -m es6 --outDir dist/es",
"build": "npm run clean:dist && run-p concat && run-p build:types build:es build:commonjs",
"pack": "run-p clean:pack build && npm pack",
"dtslint": "run-s clean:dist build:types dtslint:v2_8_plus"
},
"author": {
"name": "RefOrms",
"email": "reforms2017@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "10.3.0",
"dtslint": "0.3.0",
"npm-run-all": "4.1.3",
"prettier": "1.13.4",
"rimraf": "2.6.2",
"tslint": "5.10.0",
"tslint-config-prettier": "1.13.0",
"typescript": "3.4.3",
"concat": "^1.0.3",
"concat-cli": "^4.0.0"
},
"peerDependencies": {
"typescript": ">= 3.4.3"
},
"keywords": [
"typescript",
"types"
]
}