-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "jsbd",
"version": "0.0.11",
"main": "dist/index.js",
"module": "dist/index.modern.mjs",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/yukinotech/JSBD",
"author": "yukinotech",
"license": "MIT",
"files": [
"dist/**/*"
],
"keywords": [
"jsbd",
"BigDecimal"
],
"scripts": {
"i": "yarn install --registry=https://registry.npmmirror.com/",
"tsc": "tsc --project tsconfig.json",
"test:pre": "tsc --project tsconfig.json && jest ./ts-test",
"test": "tsc --project tsconfig.json && jest --coverage",
"build": "rimraf dist && yarn tsc && rollup --config rollup.config.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"cross-env": "^7.0.3",
"husky": "^4.3.8",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"pretty-quick": "^3.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}