-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.38 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
{
"name": "react-svg-path",
"version": "0.0.0-development",
"description": "Generate svg path commands.",
"author": "joemaddalone",
"license": "MIT",
"homepage": "https://joemaddalone.github.io/react-svg-path-docs/",
"repository": {
"type": "git",
"url": "https://github.com/joemaddalone/react-svg-path"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"commit": "git-cz",
"build": "rollup -c",
"start": "rollup -c -w",
"prepublish": "run-s build",
"test": "run-s test:unit test:lint",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"test:coverage": "cross-env CI=1 react-scripts test --coverage --watchAll=false",
"predeploy": "cd example && npm install && npm run build",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": ">=16.0",
"react-dom": ">=16.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/react": "^11.2.7",
"babel-eslint": "10.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"commitizen": "^4.2.4",
"cross-env": "7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.2",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.23.2",
"npm-run-all": "4.1.5",
"prettier": "2.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "^4.0.3",
"rollup": "^2.48.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.4.3"
},
"files": [
"dist"
],
"dependencies": {
"@joemaddalone/path": "^1.3.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}