This repository has been archived by the owner on Mar 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "@web-clipper/extensions",
"version": "0.0.17",
"main": "lib/index.js",
"repository": "git@github.com:webclipper/extensions.git",
"author": "DiamondYuan <admin@diamondyuan.com>",
"license": "MIT",
"scripts": {
"dist": "tsc",
"build": "rimraf extensions && rimraf lib && yarn dist && node lib/build.js",
"lint": "eslint --ext .js,.ts,.tsx --ignore-pattern bad.* .",
"prepublish": "npm run dist",
"test": "egg-bin cov **/*.test.ts --cov --ts ",
"start": "yarn build && now dev"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"!lib/*.test.js",
"!lib/*.test.d.ts",
"!lib/build*"
],
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@diamondyuan/eslint-config-react-typescript": "^7.0.0",
"@types/jquery": "^3.3.30",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"@web-clipper/area-selector": "^0.0.12",
"@web-clipper/highlight": "^0.0.12",
"@web-clipper/turndown": "^0.1.2",
"antd": "^3.23.6",
"babel-eslint": "^10.0.3",
"egg-bin": "^4.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"globby": "^10.0.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"react": "^16.10.2",
"rimraf": "^3.0.0",
"typescript": "^3.6.3"
}
}