-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "just-dates",
"version": "0.1.1",
"description": "parse/manipulate/format/query/compare objects as dates",
"repository": {
"type": "git",
"url": "https://github.com/lukepearson/just-dates.git"
},
"keywords": [
"date",
"compare",
"query",
"validate",
"parse",
"format",
"objects"
],
"author": {
"email": "[email protected]",
"name": "Luke Pearson"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-numeric-separator": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/sinon": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"enzyme": "^3.10.3",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^5.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^8.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"ts-node": "^8.4.1",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "TZ=Japan mocha",
"test:coverage": "TZ=Japan nyc --reporter=json --reporter=text --reporter=html mocha",
"coverage": "open ./coverage/index.html",
"test:watch": "mocha --watch --watch-files 'src/**/*.ts",
"lint": "eslint --fix -c .eslintrc.js --ext .ts src/**/*.ts",
"clean": "rimraf ./lib",
"prebuild": "yarn clean && yarn lint && yarn test --coverage"
},
"files": [
"lib"
],
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"dependencies": {
"glob-parent": "^5.1.2",
"lodash": "^4.17.21"
}
}