-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1 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
{
"name": "sudok",
"version": "0.3.2",
"description": "Sudoku Node.js",
"files": [
"dist/index.js"
],
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint *.js examples/ __test__/ --fix",
"coverage": "codecov",
"test": "jest --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hongarc/sudok.git"
},
"keywords": [
"sudoku",
"solver",
"puzzle",
"backtrack"
],
"author": "Hongarc <aqua.hong.97@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hongarc/sudok/issues"
},
"homepage": "https://github.com/Hongarc/sudok#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"rollup": "^1.32.0",
"rollup-plugin-terser": "^5.2.0",
"typescript": "^3.8.3"
}
}