-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 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
{
"name": "@orioro/expression-date",
"version": "0.0.0-semantic-release",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"test": "jest --collectCoverage",
"dev": "jest --watch",
"build": "rm -rf dist && rollup --config ./rollup/build.config.js && yarn tsc:declaration",
"prepare": "npm run build && npm run readme",
"readme": "readme",
"update-dependencies": "npx npm-check-updates -u",
"tsc:declaration": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"tsc:validate": "tsc --noEmit",
"commit": "cz",
"lint:eslint": "eslint src",
"lint:prettier": "prettier src --check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"prettier": "prettier src",
"ci-check": "yarn test && yarn tsc:validate && yarn lint"
},
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@orioro/readme": "^1.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^5.0.9",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.39.0",
"semantic-release": "^17.3.9",
"typescript": "^4.1.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@orioro/expression": "^2.7.2",
"luxon": "^1.26.0"
}
}