-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 989 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
{
"name": "nplaym",
"version": "1.3.7",
"description": "A wrapper for npm so you can play a Space-Invaders-a-like game while installing.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "babel --source-maps --out-dir lib/ src/ --watch",
"build": "rollup -i src/index.js -o bin/nplaym --banner '#!/usr/bin/env node' --config rollup.config.js"
},
"bin": {
"nplaym": "./bin/nplaym"
},
"repository": {
"type": "git",
"url": "git://github.com/JonathanUsername/nplaym.git"
},
"author": "Jonathan King",
"license": "ISC",
"dependencies": {
"child_pty": "~3.0.1",
"colors": "~1.1.2",
"extend": "~3.0.0",
"keypress": "~0.2.1",
"lodash": "~4.6.1",
"nan": "~2.2.0",
"node-terminal": "~0.1.1"
},
"devDependencies": {
"babel-cli": "~6.6.5",
"babel-preset-es2015": "~6.6.0",
"babel-preset-es2015-rollup": "~1.1.1",
"babelify": "~7.2.0",
"rollup-plugin-babel": "~2.4.0"
}
}