-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.75 KB
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
{
"name": "parse-condition-string",
"version": "1.2.0",
"description": "A package about parse condition string to js condition",
"scripts": {
"test": "jest",
"build": "rollup -c",
"build:script": "node ./script/build.js",
"build:ts": "ts-node ./script/build.ts",
"check": "eslint ./src/index.ts",
"init:eslint": "eslint --init",
"tstest": "ts-node ./test/test.ts",
"tts": "ts-node ./t.ts"
},
"author": "sczheng",
"keywords": [
"condition",
"parse",
"string",
"boolean"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"index.mjs",
"dist"
],
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
}
},
"homepage": "https://github.com/initialing/parse-condition-string#readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/initialing/parse-condition-string.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/initialing/parse-condition-string/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.5.1",
"rollup": "^2.60.1",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}