-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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": "@ran350/make10",
"description": "library solving make 10 puzzle",
"version": "1.0.2",
"author": {
"name": "Ran350"
},
"bugs": {
"url": "https://github.com/Ran350/make10/issues"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"prettier": "^2.5.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"url": "https://github.com/Ran350/make10"
},
"scripts": {
"build": "rm -rf build && npx tsc",
"test": "jest",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\""
}
}