forked from bahmutov/game-of-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 913 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 913 Bytes
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
{
"name": "game-of-github",
"version": "1.0.0",
"description": "Play Game of Life in your GitHub contributions",
"main": "index.js",
"scripts": {
"test": "standard --verbose --fix index.js",
"prebuild": "npm test",
"build": "uglifyjs index.js --compress --mangle -b 'beautify=false,quote_style=1' -o index.min.js",
"deploy": "gh-pages -d dist -b gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/game-of-github.git"
},
"keywords": [
"Game of Life",
"GitHub",
"bookmarklet",
"code snippet"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/game-of-github/issues"
},
"homepage": "https://github.com/bahmutov/game-of-github#readme",
"devDependencies": {
"gh-pages": "0.12.0",
"standard": "8.6.0",
"uglify-js": "2.7.5"
}
}