-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1023 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1023 Bytes
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
{
"name": "@autodatadirect/service-date",
"version": "2.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "babel ./src -d ./dist",
"dev": "babel -w ./src -d ./dist",
"prepare": "npm run build",
"lint": "standard \"./src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/autodatadirect/service-date.git"
},
"author": "Auto Data Direct, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/autodatadirect/service-date/issues"
},
"homepage": "https://github.com/autodatadirect/service-date#readme",
"peerDependencies": {
"date-fns": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "7.14.3",
"@babel/core": "7.14.3",
"@babel/plugin-proposal-object-rest-spread": "7.14.4",
"@babel/preset-env": "7.14.4",
"@babel/runtime": "7.14.0",
"babel-jest": "27.0.2",
"jest": "27.0.4",
"standard": "16.0.3"
},
"standard": {
"env": [
"jest"
]
}
}