-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "sudokumaker",
"version": "v1.0.9",
"description": "sudokumaker",
"main": "./dist/sudokumaker.min.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "ava",
"webpack": "webpack --display-error-details;",
"watch": "webpack --watch --display-error-details;"
},
"ava": {
"files": [
"test/*.js"
],
"failFast": true,
"tap": true,
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "https://github.com/ossas/sudokumaker.git"
},
"keywords": [
"sudoku"
],
"author": "kimorkim",
"license": "MIT",
"bugs": {
"url": "https://github.com/ossas/sudokumaker/issues"
},
"homepage": "https://github.com/ossas/sudokumaker#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel": "^6.5.2",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"core-js": "^2.4.1",
"webpack": "^1.13.2"
}
}