-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
50
51
{
"name": "chess-board",
"version": "1.1.0",
"description": "A web component for displaying chess positions.",
"main": "lib/chess-board.html",
"scripts": {
"start": "http-server",
"build:html": "cp src/*.html lib/.",
"build:js": "browserify -d src/chess-board.js -o lib/chess-board.js",
"watch:js": "watchify -d src/chess-board.js -o lib/chess-board.js",
"build": "mkdir -p lib && npm run build:js && npm run build:html",
"lint": "eslint src/.",
"test": "npm run lint",
"prepublish": "npm run build"
},
"author": "Sigurd Fosseng <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/laat/chess-board"
},
"bugs": {
"url": "https://github.com/laat/chess-board/issues"
},
"keywords": [
"web-components",
"es6",
"chess"
],
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"eslint": "^3.4.0",
"eslint-config-airbnb-base": "^7.0.0",
"eslint-plugin-import": "^1.14.0",
"fen-chess-board": "^2.0.2",
"http-server": "^0.9.0",
"remove-children": "^1.0.2",
"sg-example": "^1.0.3",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"files": [
"lib"
]
}