forked from moment/luxon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.7 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
{
"name": "luxon",
"version": "1.17.1",
"description": "Immutable date wrapper",
"author": "Isaac Cambron",
"keywords": [
"date",
"immutable"
],
"repository": "https://github.com/moment/luxon",
"scripts": {
"build": "babel-node tasks/buildAll.js",
"build-node": "babel-node tasks/buildNode.js",
"build-global": "babel-node tasks/buildGlobal.js",
"jest": "jest",
"test": "jest --coverage",
"docs": "esdoc -c docs/index.js",
"site": "cp -r site/** build/",
"lint": "eslint --quiet src test benchmarks",
"lint!": "npm run format && npm run lint",
"format": "prettier --write 'src/**/*.js' 'test/**/*.js' 'benchmarks/*.js'",
"benchmark": "babel-node benchmarks/datetime.js",
"codecov": "codecov",
"check-doc-coverage": "babel-node tasks/docCoverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/node": "^7.2.2",
"@babel/plugin-external-helpers": "^7.1.2",
"@babel/preset-env": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "latest",
"babel-jest": "latest",
"benchmark": "latest",
"codecov": "^3.1.0",
"core-js": "^2.5.7",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "latest",
"eslint": "^5.8.0",
"eslint-config-defaults": "latest",
"eslint-config-prettier": "3.1.0",
"eslint-config-standard": "latest",
"eslint-plugin-babel": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-promise": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-standard": "latest",
"fs-extra": "^6.0.1",
"full-icu": "latest",
"husky": "latest",
"jest": "^24.7.1",
"lint-staged": "latest",
"prettier": "1.14.3",
"rollup": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-babel-minify": "^6.1.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "latest",
"uglify-js": "latest"
},
"main": "build/node/luxon.js",
"module": "src/luxon.js",
"browser": "build/cjs-browser/luxon.js",
"jsdelivr": "build/global/luxon.min.js",
"unpkg": "build/global/luxon.min.js",
"engines": {
"node": "*"
},
"files": [
"build/node/luxon.js",
"build/node/luxon.js.map",
"build/cjs-browser/luxon.js",
"build/cjs-browser/luxon.js.map",
"build/amd/luxon.js",
"build/amd/luxon.js.map",
"build/global/luxon.js",
"build/global/luxon.js.map",
"build/global/luxon.min.js",
"build/global/luxon.min.js.map",
"src"
],
"license": "MIT"
}