-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "chinese-holidays",
"version": "1.7.0",
"description": "Chinese holidays",
"main": "lib/index.js",
"files": [
"lib",
"data"
],
"scripts": {
"build": "npx babel src -d lib",
"test": "npm run build && mocha --timeout 10000",
"generate-docs": "jsdoc src -r -R README.md -t node_modules/docdash -d ./docs/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bastengao/chinese-holidays-node.git"
},
"keywords": [
"chinese",
"holidays"
],
"author": "Basten Gao <[email protected]> (http://bastengao.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bastengao/chinese-holidays-node/issues"
},
"homepage": "https://github.com/bastengao/chinese-holidays-node#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"docdash": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^10.1.0",
"should": "^9.0.2"
},
"dependencies": {
"lodash": "^4.17.13",
"moment": "^2.19.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
}
}