forked from commenthol/date-chinese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "date-chinese",
"version": "1.0.7",
"description": "Chinese Calendar",
"keywords": [
"calendar",
"chinese",
"chinese new year",
"conversion",
"gregorian",
"japanese",
"jieqi",
"korean",
"qingming",
"sekki",
"vietnamese",
"zhongqi"
],
"homepage": "https://github.com/commenthol/date-chinese",
"bugs": {
"url": "https://github.com/commenthol/date-chinese/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/date-chinese.git"
},
"license": "MIT",
"author": "commenthol <[email protected]>",
"main": "lib",
"directories": {
"test": "test"
},
"scripts": {
"all": "npm-run-all clean lint build test",
"build": "babel -d lib src",
"build:es5": "BABEL_ENV=es5 babel -d es src",
"clean": "rimraf lib es coverage .nyc_output",
"clean:all": "npm-run-all clean clean:node_modules",
"clean:node_modules": "rimraf node_modules",
"coverage": "nyc -r text -r html npm test",
"lint": "eslint '**/*.js'",
"prepublishOnly": "npm run all",
"test": "mocha"
},
"babel": {
"env": {
"development": {
"presets": [
"env",
"stage-2"
]
},
"es5": {
"presets": [
[
"env",
{
"targets": {
"node": "current",
"browsers": [
"last 2 versions",
"ie >= 11"
]
},
"modules": false,
"loose": true
}
],
"stage-2"
]
}
}
},
"eslintConfig": {
"extends": "standard",
"plugins": [
"standard"
]
},
"dependencies": {
"astronomia": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"rimraf": "^3.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"maintainers": [
"commenthol <[email protected]>"
]
}