-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
46
47
48
49
{
"name": "chai-iso8601",
"version": "1.0.0",
"description": "Chai assertions to check dates in the ISO-8601 format.",
"main": "index.js",
"scripts": {
"doctoc": "doctoc --notitle --github README.md",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha spec/**/*.spec.js",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MediaComem/chai-iso8601.git"
},
"keywords": [
"chai",
"iso8601"
],
"author": "Media Engineering Institute <mei@heig-vd.ch> (mei.heig-vd.ch)",
"contributors": [
"Simon Oulevay <npm@alphahydrae.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MediaComem/chai-iso8601/issues"
},
"homepage": "https://github.com/MediaComem/chai-iso8601#readme",
"files": [
"index.js",
"LICENSE.txt",
"README.md"
],
"dependencies": {
"moment": "^2.19.2"
},
"devDependencies": {
"babel-plugin-istanbul": "^4.1.5",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"doctoc": "^1.3.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0"
},
"peerDependencies": {
"chai": "^4.0.0"
}
}