-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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": "nomoney",
"version": "1.0.4",
"description": "人民币大写格式化,数字大写格式化。",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack --config ./build/webpack.build.js --progress & tsc --project tsconfig.json",
"dev": "webpack serve --config ./build/webpack.dev.js",
"test": "jest",
"test:cover": "jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jon-Millent/nomoney.git"
},
"author": "jon-millent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jon-Millent/nomoney/issues"
},
"homepage": "https://github.com/Jon-Millent/nomoney#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.17",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}