-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.25 KB
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
{
"name": "@jsany/date",
"version": "1.0.6",
"description": "javascript date small es5 es6+",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"scripts": {
"test": "mocha --require @babel/register",
"compile": "babel es --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/jsany/date.git"
},
"keywords": [
"data",
"js",
"format",
"transform"
],
"author": "jiangzhiguo2010",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsany/date/issues"
},
"homepage": "https://github.com/jsany/date",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"mocha": "^6.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node .github/verifyCommitMsg"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"directories": {
"test": "test"
},
"dependencies": {}
}