-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.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
{
"name": "sudoku-example",
"version": "1.0.0",
"description": "An example using nools to solve a sudoku puzzle",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "./node_modules/eslint/bin/eslint.js src/.",
"eslint-fix": "npm run eslint --fix",
"repl": "npm run sudoku repl",
"solve": "npm run sudoku solve",
"sudoku": "node ./bin/sudoku-nools.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noolsjs/sudoku-example.git"
},
"keywords": [
"nools",
"sudoku"
],
"author": "Doug Martin",
"license": "ISC",
"bugs": {
"url": "https://github.com/noolsjs/sudoku-example/issues"
},
"homepage": "https://github.com/noolsjs/sudoku-example#readme",
"dependencies": {
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"lodash": "^4.17.4",
"nools": "^0.4.4"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
}
}