-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.45 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
52
53
54
{
"name": "@tgfjt/you-have-a-pen",
"description": "A puzzle game.",
"scripts": {
"dev": "budo src/app.js --open --live --port 8080 -- -t sheetify/transform",
"copy": "mkdir -p docs && cp index.html docs",
"lint": "standard src/**/*.js --verbose | snazzy",
"test": "ava",
"cov": "nyc report --reporter=html",
"build": "npm run copy && NODE_ENV=production browserify -e src/app.js -o docs/app.js -t sheetify/transform -t envify -g unassertify -g es2040 -g uglifyify ",
"postpublish": "greenkeeper-postpublish"
},
"keywords": [],
"author": "tgfjt",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/tgfjt/you-have-a-pen"
},
"bugs": {
"url": "https://github.com/tgfjt/you-have-a-pen/issues"
},
"dependencies": {
"choo": "^4.0.0-5",
"keymaster": "^1.6.2",
"lodash.assign": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.range": "^3.2.0",
"lodash.shuffle": "^4.2.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"ava": "^0.19.0",
"browserify": "^13.1.0",
"budo": "^9.2.1",
"choo-log": "^3.0.0",
"envify": "^3.4.1",
"es2040": "^1.2.4",
"greenkeeper-postpublish": "^1.0.1",
"nyc": "^8.3.2",
"sheetify": "^5.1.1",
"snazzy": "^5.0.0",
"standard": "^8.4.0",
"uglifyify": "^3.0.3",
"unassertify": "^2.0.3"
},
"ava": {
"files": [
"tests/**/*.js"
],
"verbose": true
}
}