-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
{
"name": "@orioro/expression",
"version": "0.0.0-semantic-release",
"description": "Framework of expression interpreters",
"keywords": [
"expression",
"eval",
"conditional"
],
"homepage": "https://github.com/orioro/node-expression",
"bugs": "https://github.com/orioro/node-expression/issues",
"repository": {
"type": "git",
"url": "https://github.com/orioro/node-expression.git"
},
"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": "yarn build",
"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"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@orioro/jest-util": "^1.5.0",
"@orioro/readme": "^1.0.1",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.3.0",
"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.4.2",
"prettier": "2.2.1",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.26.8",
"semantic-release": "^17.3.7",
"typescript": "^4.0.2"
},
"dependencies": {
"@orioro/typing": "^5.0.2",
"lodash": "^4.17.20",
"mem": "^8.0.0"
},
"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"
]
}
}