-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "rpglevel",
"description": "Manage the \"level\" and the \"exp\"",
"version": "2.0.1",
"author": "kjirou",
"bugs": {
"url": "https://github.com/kjirou/rpglevel/issues"
},
"dependencies": {
"lodash": "3.6.0"
},
"devDependencies": {
"browserify": "9.0.4",
"fixpack": "2.2.0",
"jshint": "2.6.3",
"mocha": "2.2.1",
"sinon": "1.14.1",
"testem": "0.7.6"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/kjirou/rpglevel",
"keywords": [
"rpg",
"game"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/kjirou/rpglevel"
},
"scripts": {
"browser-test": "testem",
"build": "cp node_modules/mocha/mocha.css public/dist & cp node_modules/mocha/mocha.js public/dist & browserify public/tests.js > public/dist/bundle.js",
"ci-browser-test": "testem ci -l phantomjs",
"cli-browser-test": "testem ci -l phantomjs,chrome,firefox",
"lint": "jshint index.js",
"test": "mocha"
}
}