forked from antvis/adjust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
64
{
"name": "@antv/adjust",
"version": "0.2.0",
"description": "The adjust module for G2, F2.",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"esm",
"README.md",
"LICENSE"
],
"devDependencies": {
"@antv/scale": "~0.2.0",
"@antv/torch": "~1.0.5",
"chai": "~4.1.2",
"husky": "^3.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"rimraf": "^3.0.0"
},
"scripts": {
"clean": "rimraf lib esm",
"lint": "run-s lint:*",
"lint:tslint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:prettier": "prettier --list-different 'src/**/*.{ts,tsx,js,jsx}'",
"test": "torch --renderer --compile --recursive ./__tests__/",
"test-live": "torch --compile --interactive --watch --recursive ./__tests__/",
"coverage": "exit 0",
"lib:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"lib:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"lib": "run-p lib:*",
"build": "run-s clean lib",
"ci": "run-s lint build test"
},
"dependencies": {
"@antv/util": "~2.0.0",
"tslib": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint build test"
}
},
"repository": {
"type": "git",
"url": "[email protected]:antvis/adjust.git"
},
"bugs": {
"url": "https://github.com/antvis/adjust/issues"
},
"keywords": [
"antv",
"adjust",
"g2",
"f2"
],
"author": "https://github.com/orgs/antvis/people",
"license": "MIT"
}