-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "timestore",
"version": "1.2.0",
"description": "Multiple timers manager, especially good for games.",
"keywords": [
"game",
"games",
"timer",
"timers",
"setTimeout",
"setInterval"
],
"repository": "xenohunter/timestore",
"bugs": {
"url": "https://github.com/xenohunter/timestore/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Phil Filippak",
"email": "[email protected]",
"url": "http://xenohunter.me"
},
"main": "index.js",
"devDependencies": {
"browserify": "^13.1.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"uglify-js": "^2.7.3"
},
"scripts": {
"test": "browserify index.js -s timestore -o test/timestore-for-test.js && mocha test/tests.js",
"compile": "browserify index.js -s timestore -o timestore.${npm_package_version}.js",
"mcompile": "browserify index.js -s timestore | uglifyjs -o timestore.${npm_package_version}.min.js -m",
"prepublish": "npm run compile && npm run mcompile"
}
}