forked from wanasit/chrono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 993 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 993 Bytes
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
{
"name": "aiko-chrono-node",
"description": "A flavor of chrono-node with some more features.",
"homepage": "http://github.com/Aiko/chrono",
"repository": {
"type": "git",
"url": "https://github.com/Aiko/chrono.git"
},
"license": "MIT",
"version": "1.4.4",
"directories": {
"source": "./src",
"test": "./test"
},
"main": "./src/chrono",
"devDependencies": {
"browserify": "^14.3.0",
"coveralls": "^2.11.2",
"jest": "^22.4.4",
"minifyify": "^7.0.6",
"nsp": "^3.2.1"
},
"scripts": {
"make-bundle": "browserify src/chrono.js -d --s chrono -o chrono.js",
"make-minify": "browserify src/chrono.js -d --s chrono -d -p [minifyify --output chrono.map.json] -o chrono.min.js",
"make": "npm run make-bundle & npm run make-minify",
"watch": "jest --watch",
"test": "jest --coverage && nsp check",
"coveralls": "npm run test && cat coverage/lcov.info | coveralls"
},
"dependencies": {
"moment": "2.21.0"
}
}