-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "@mochen/yuumi",
"version": "1.1.1",
"description": "Toolkit for js development",
"main": "index.js",
"scripts": {
"precompile": "./bin/precompile",
"compile": "npm run precompile && tsc",
"clean": "rm -rf *.js *.d.ts src/index.ts",
"test": "jest",
"lint": "eslint ./src/*.ts ./test/*.ts",
"lint:fix": "eslint ./src/*.ts ./test/*.ts --fix",
"test:coverage": "jest --coverage",
"codecov": "codecov -f coverage/*.json",
"prepublishOnly": "npm run test && npm run compile",
"postpublish": "npm run clean",
"postdoc": "./bin/postdoc",
"doc": "typedoc && npm run postdoc",
"check": "npm run lint && npm run test && npm run doc && npm run compile && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imochen/yuumi.git"
},
"keywords": [],
"author": "mochen <mochen.china@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imochen/yuumi/issues"
},
"homepage": "https://github.com/imochen/yuumi#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.7.0",
"codecov": "^3.8.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
}
}