-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "shexy",
"version": "0.1.0",
"description": "Everything related to Hexagons in one awesome JS library.",
"keywords": [
"hex",
"hexagon",
"board"
],
"homepage": "https://github.com/ShayDavidson/shexy.js",
"author": {
"name": "Shay Davidson",
"email": "[email protected]",
"url": "https://github.com/ShayDavidson"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ShayDavidson/shexy.js"
},
"bugs": {
"url": "https://github.com/ShayDavidson/shexy.js/issues"
},
"main": "./dist/shexy.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"open": "open ./examples/example.html",
"lint": "eslint src/**/*.js test/**/*.js --cache --max-warnings 0",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"eslint": "3.4.0",
"eslint-config-standard": "6.0.0",
"eslint-plugin-standard": "2.0.0",
"jsdoc": "^3.4.0",
"webpack": "^1.12.6"
}
}