-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
55
{
"name": "hackshell",
"version": "0.3.0",
"description": "An emulator for the shell environment used in Drizzly Bear's game 'h a c k m u d'",
"main": "dist/hackshell.js",
"jsnext:main": "dist/hackshell.mjs",
"module": "dist/hackshell.mjs",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c build/lib.rollup.config.js",
"build-cli": "rollup -c build/cli.rollup.config.js",
"watch": "rollup -c build/lib.rollup.config.js -w",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test"
},
"bin": "./cli.js",
"directories": {
"lib": "lib",
"dist": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurotsuto/hackshell.git"
},
"bugs": {
"url": "https://github.com/kurotsuto/hackshell/issues"
},
"files": [
"lib",
"dist"
],
"author": "Adam Bosco",
"homepage": "https://github.com/kurotsuto/hackshell#readme",
"license": "LGPL-2.1",
"engines": {
"node": ">=6.9"
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.2.2",
"expect.js": "^0.3.1",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-istanbul": "^1.0.0",
"rollup-watch": "^2.5.0"
}
}