-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 849 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
35
36
{
"name": "timespec",
"version": "0.3.0",
"author": "Caleb Case <[email protected]>",
"description": "Parse time-like phrases into a Date.",
"contributors": [
{
"name": "Caleb Case",
"email": "[email protected]"
}
],
"scripts": {
"prepublish": "pegjs timespec.pegjs",
"pretest": "rm -f timespec.js && pegjs timespec.pegjs",
"test": "istanbul test _mocha -- --compilers coffee:coffee-script -R spec",
"clean": "rm -f timespec.js",
"dist-clean": "git clean -df"
},
"main": "timespec",
"repository": {
"type": "git",
"url": "git://github.com/calebcase/timespec.git"
},
"keywords": [
"time",
"parser"
],
"devDependencies": {
"coffee-script": "1.x",
"istanbul": "0.x",
"mocha": "1.x",
"pegjs": "0.x",
"should": "1.x"
},
"license": "Apache"
}