-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"name": "@silkjs/pocket",
"version": "0.0.7",
"description": "effect",
"main": "dist/main.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "rm -rf dist && tsc --build tsconfig.dev.json",
"build": "rm -rf dist && tsc --build tsconfig.app.json",
"lint": "eslint src/**/*.ts --fix",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silkjs/pocket.git"
},
"keywords": [],
"authors": [
{
"name": "DasonCheng",
"email": "dasoncheng@foxmail.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/silkjs/pocket/issues"
},
"homepage": "https://github.com/silkjs/pocket#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"codecov": "^3.6.1",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.7",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"vuepress": "^1.1.0"
},
"dependencies": {
"lodash": "^4.17.15"
}
}