-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "decimal-format",
"version": "3.0.1",
"description": "format decimal",
"main": "lib/index.js",
"module": "es/index.mjs",
"jsnext:main": "es/index.mjs",
"browser": "dist/decimalFormat.min.js",
"typings": "./typings/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf dist es lib && rollup -c && uglifyjs dist/decimalFormat.js -o dist/decimalFormat.min.js",
"prepare": "npx husky install",
"prepublish": "npm run build"
},
"author": "leemotive@163.com",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^10.2.11",
"prettier": "^2.7.1",
"rollup": "^2.78.0",
"rollup-plugin-dts": "^4.2.2",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"uglify-es": "^3.3.9"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leemotive/decimal-format.git"
},
"keywords": [
"decimal",
"format"
],
"bugs": {
"url": "https://github.com/leemotive/decimal-format/issues"
},
"homepage": "https://github.com/leemotive/decimal-format#readme",
"dependencies": {}
}