-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@dino-dna/d3-svg-path-editor",
"version": "0.0.0-semantic-release",
"license": "MIT",
"main": "./src/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"src"
],
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@types/blue-tape": "0.1.36",
"@types/d3": "5.16.7",
"@types/lodash": "4.14.189",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"blue-tape": "1.0.0",
"d3": "5.16.0",
"del-cli": "4.0.1",
"gh-pages": "5.0.0",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"parcel-bundler": "1.12.5",
"perish": "1.0.3",
"phantomjs-prebuilt": "2.1.16",
"prettier-standard": "16.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "2.79.1",
"rollup-plugin-typescript": "1.0.1",
"standardx": "6.0.0",
"testem": "3.11.0",
"typescript": "3.9.10",
"webpack": "4.47.0",
"webpack-cli": "4.10.0"
},
"scripts": {
"build": "tsc",
"bundle:test": "webpack --mode=development",
"clean": "del '{src,demo,test}/**/*.{js,jsx,d.ts}' && rm -rf .cache",
"format": "prettier-standard '{demo,src,test,scripts}/**/*.{js,jsx,ts,tsx}'",
"lint": "standardx '{demo,src,test,scripts}/**/*.{js,jsx,ts,tsx}' --fix",
"build:demo": "parcel build demo/index.html --public-url '.'",
"demo": "parcel demo/index.html",
"test": "testem ci"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test,scripts}/**/*.{js,jsx,ts,tsx}": [
"yarn format",
"yarn lint",
"git add"
]
},
"eslintConfig": {
"rules": {
"no-unused-vars": 0
}
},
"standardx": {
"env": [
"browser"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignore": [
"**/*.d.ts"
]
},
"peerDependencies": {
"d3": "*"
}
}