-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
45
{
"name": "zeitgeist",
"version": "0.0.1-0",
"description": "An immutable date, time and duration library based on the ISO-8601 format",
"main": "lib/index.js",
"scripts": {
"lint": "eslint-crewmeister src",
"test": "mocha {src,scripts}/{*,**/*,**/**/*,**/**/**/*}.spec.js --recursive --compilers js:babel-register --reporter progress",
"prepublish": "BABEL_ENV=production babel src/ --out-dir lib/ --ignore *.spec.js",
"tz:update": "babel-node scripts/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webPapaya/pomeranian-datetime.git"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-preset-babili": "^0.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"eslint-config-crewmeister": "latest",
"hamjest": "^2.13.0",
"mocha": "^2.5.3"
},
"keywords": [
"time",
"date",
"duration",
"ISO-8601",
"ISO",
"8601"
],
"author": "Webpapaya",
"license": "ISC",
"bugs": {
"url": "https://github.com/webPapaya/pomeranian-datetime/issues"
},
"homepage": "https://github.com/webPapaya/pomeranian-datetime#readme",
"dependencies": {
"ramda": "^0.22.1"
}
}