-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 851 Bytes
/
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
{
"name": "cyclejs-shooter",
"version": "1.0.0",
"description": "Cycle.js-based hide-and-shoot game",
"main": "src/index.js",
"scripts": {
"unit": "ava --verbose",
"dev": "budo src/bootstrap.js",
"test": "npm run lint && npm run unit",
"lint": "standard"
},
"keywords": [
"shooter",
"game",
"cycle.js"
],
"author": "Yarom Shoval <[email protected]> (yarom82)",
"contributors": [
{
"name": "Shahar Or (mightyiam)",
"email": "[email protected]",
"url": "https://mightyi.am"
}
],
"license": "ISC",
"dependencies": {
"@cycle/dom": "^12.2.5",
"@cycle/xstream-run": "^3.1.0",
"ramda": "^0.22.1",
"xstream": "^6.4.1"
},
"devDependencies": {
"ava": "^0.16.0",
"budo": "^9.2.1",
"mock-require": "^1.3.0",
"standard": "^8.4.0"
}
}