-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.08 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
{
"name": "car-share-fare",
"version": "0.9.2",
"main": "dist/index.js",
"umd:main": "dist/car-share-fare.umd.production.js",
"module": "dist/car-share-fare.es.production.js",
"typings": "dist/index.d.ts",
"engines": {
"node": "^18"
},
"files": [
"dist"
],
"scripts": {
"start": "npx http-server dist/ -o",
"build": "tsdx build --format esm",
"build:watch": "watch 'npm run build' src www",
"now-build": "npm run build",
"pretest": "npm run lint",
"test": "tsdx test --watchAll",
"pretest:ci": "npm run lint",
"test:ci": "tsdx test",
"lint": "tsdx lint src"
},
"jest": {
"verbose": true,
"testMatch": [
"<rootDir>/**/*.(spec|test).{ts,tsx}"
]
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"husky": "^4.3.0",
"rollup-plugin-copy": "^3.3.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}