-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "@yukinotech/babel-plugin-transform-jsbd-to-bigdecimal",
"version": "0.0.2",
"main": "dist/index.js",
"module": "dist/index.modern.mjs",
"repository": "https://github.com/yukinotech/babel-plugin-transform-jsbd-to-bigdecimal",
"author": "yukinotech",
"files": [
"dist/**/*"
],
"keywords": [
"jsbd",
"BigDecimal",
"bigdecimal",
"javascript",
"babel"
],
"scripts": {
"i": "yarn install --registry=https://registry.npmmirror.com/",
"build": "rimraf dist && rollup --config rollup.config.js",
"test": "node ./test/transform.js"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-syntax-decimal": "^7.18.6",
"cross-env": "^7.0.3",
"husky": "^4.3.8",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"pretty-quick": "^3.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"@yukinotech/babel-plugin-transform-jsbd-to-bigdecimal": "^0.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}