-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.14 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
43
44
{
"name": "moment-parser",
"version": "0.3.0",
"description": "moment parser that supports natural language expressions",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/.bin/istanbul cover -x 'lib/parser.js' node_modules/.bin/_mocha",
"check-coverage": "node_modules/.bin/istanbul check-coverage",
"postinstall": "node scripts/peg.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juttle/moment-parser.git"
},
"keywords": [
"moment",
"parser"
],
"author": "Will Welch <[email protected]>",
"contributors": [
"Brian Kerezturi <[email protected]>",
"Michael Demmer <[email protected]>",
"Rodney Gomes <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/juttle/moment-parser/issues"
},
"homepage": "https://github.com/juttle/moment-parser#readme",
"dependencies": {
"extendable-base": "^0.3.1",
"moment": "^2.10.6",
"pegjs": "^0.9.0"
},
"devDependencies": {
"chai": "^3.4.1",
"istanbul": "^0.4.1",
"mocha": "^2.3.3",
"underscore": "^1.8.3"
}
}