forked from wanasit/chrono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 993 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
{
"name": "chrono-node",
"description": "A natural language date parser in Javascript",
"homepage": "http://github.com/berryboy/chrono",
"repository": {
"type": "git",
"url": "https://github.com/berryboy/chrono.git"
},
"license": "MIT",
"version": "1.3.10",
"directories": {
"source": "./src",
"test": "./test"
},
"main": "./src/chrono",
"devDependencies": {
"browserify": "^14.3.0",
"coveralls": "^2.11.2",
"jest": "^22.0.4",
"nsp": "^3.2.1",
"minifyify": "^7.0.6"
},
"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"
}
}