-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "unexpected-moment",
"version": "4.0.0",
"description": "Unexpected plugin for Moment.js",
"main": "lib/unexpected-moment.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "TZ='Europe/Copenhagen' mocha test/**/*.js documentation/**/*.md && npm run lint",
"travis": "TZ='Europe/Copenhagen' npm test && npm run coverage && (<coverage/lcov.info coveralls || true) && npm run generate-site",
"coverage": "TZ='Europe/Copenhagen' NODE_ENV=development istanbul cover _mocha -- --reporter dot",
"generate-site": "TZ='Europe/Copenhagen' generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "TZ='Europe/Copenhagen' generate-site --require ./bootstrap-unexpected-markdown.js --update-examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unexpectedjs/unexpected-moment.git"
},
"keywords": [
"test",
"testing",
"unexpected",
"moment",
"moment.js"
],
"author": {
"name": "Joel Mukuthu",
"email": "[email protected]"
},
"contributors": [
{
"name": "Sune Simonsen",
"email": "[email protected]"
},
{
"name": "Andreas Lind",
"email": "[email protected]"
},
{
"name": "Joel Mukuthu",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-moment/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-moment",
"dependencies": {
"moment": "^2.13.0"
},
"peerDependencies": {
"moment": "^2.13.0",
"unexpected": "^10.40.0 || ^11.0.0-4 || ^12.0.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"istanbul": "^0.4.0",
"mocha": "^8.2.1",
"moment-timezone": "^0.4.1",
"prettier": "~2.2.0",
"unexpected": "^12.0.0",
"unexpected-documentation-site-generator": "^4.0.0",
"unexpected-markdown": "^1.4.0"
}
}