-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.94 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
{
"name": "unifycode",
"version": "0.1.4",
"description": "Unify Code library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"prerelease": "cross-env CI=1 npm run test",
"release": "np",
"build": "tib-tsc",
"build:full": "npm ci --ignore-scripts && npm run clean && npm run build",
"coverage": "tib-nyc report --reporter=text-summary",
"precoverage": "npm test",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint": "tib-eslint --report-unused-disable-directives --cache .",
"eslint:fix": "npm run eslint -- --fix",
"prettier:cli": "tib-prettier \"**/*.ts\" \"**/*.js\" \"**/*.md\"",
"prettier:check": "npm run prettier:cli -- --check",
"prettier:fix": "npm run prettier:cli -- --write",
"format": "npm run prettier:fix",
"clean": "tib-clean dist coverage .nyc_output *.tsbuildinfo",
"pretest": "npm run clean && npm run format",
"test": "tib-nyc npm run mocha",
"test:ci": "tib-nyc npm run mocha",
"posttest": "npm run lint",
"premocha": "npm run build",
"mocha": "tib-mocha \"dist/__tests__/**/*.js\"",
"preunit": "npm run build",
"unit": "tib-mocha \"dist/__tests__/unit/**/*.js\""
},
"author": "li zhaogai <[email protected]>",
"license": "MIT",
"dependencies": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/boot": "^3.4.2",
"@loopback/core": "^2.16.2",
"@loopback/repository": "^3.7.1",
"@loopback/service-proxy": "^3.2.2",
"@tib/build": "^6.3.0",
"@tib/eslint-config": "^8.2.0",
"@tib/testlab": "^3.4.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"cross-env": "^7.0.2",
"kvs": "2.0.4",
"kvs-redis": "2.0.1",
"mocha": "^8.0.1",
"np": "^6.3.2"
},
"keywords": [],
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
]
}