-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@hgshdt/rpn-calculator",
"version": "0.0.9",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hgshdt/rpn-calculator.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "./dist/rpn-calculator.umd.js",
"module": "./dist/rpn-calculator.es.js",
"exports": {
".": {
"import": "./dist/rpn-calculator.es.js",
"require": "./dist/rpn-calculator.umd.js"
}
},
"types": "./types/main.d.ts",
"files": [
"/dist",
"/types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"clean": "rimraf dist/* types/*",
"test": "jest --config ./jest.config.json",
"test:watch": "jest --config ./jest.config.json --watch",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier --write --loglevel=warn 'src/**/*.{js,ts}'",
"typesync": "npx typesync || :",
"prepare": "npm run build"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/eslint": "^8.4.6",
"@types/jest": "^28.1.7",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
"ts-jest": "^28.0.8",
"typescript": "^4.6.4",
"typesync": "^0.9.2",
"vite": "^3.0.7"
},
"dependencies": {
"bignumber.js": "^9.1.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write --loglevel=error",
"eslint --fix --quiet"
]
}
}