-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "ts-lib",
"license": "ISC",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/ts-lib.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "sh init.sh && node build/build.js && tsc src/index.ts && node build/tscBuild.js && tsdx build && node build/finish.js && sh lash.sh",
"test": "tsdx test",
"lint": "tsdx lint",
"publish": "sh ./npm-plugins.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/i-jump/ts-librarys.git"
},
"bugs": {
"url": "https://github.com/i-jump/ts-libraries/issues/1"
},
"homepage": "https://github.com/i-jump/ts-libraries/blob/master/README.md",
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"husky": "^3.0.4",
"ora": "^3.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"tsdx": "^0.9.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"dependencies": {}
}