forked from wanasit/chrono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.33 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
{
"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.2.4",
"directories": {
"source": "./src",
"test-qunit": "./test-qunit"
},
"main": "./src/chrono",
"devDependencies": {
"browserify": "^6.3.3",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"karma": "~0.10.4",
"karma-browserify": "^1.0.0",
"karma-chrome-launcher": "~0.1.0",
"karma-firefox-launcher": "~0.1.0",
"karma-qunit": "~0.1.1",
"minifyify": "^7.0.6",
"qunit": "git://github.com/wanasit/node-qunit.git",
"watchify": "^2.1.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": "watchify src/chrono.js -d --s chrono -o chrono.js",
"karma": "karma start",
"test": "qunit -l '{summary:true, tests: true}' -c chrono:src/chrono.js -p src -t test/*.js --cov",
"coveralls": "npm run test && cat coverage/lcov.info | coveralls"
},
"dependencies": {
"moment": "^2.10.3"
}
}