-
Notifications
You must be signed in to change notification settings - Fork 168
/
package.json
111 lines (111 loc) · 3.4 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-move",
"version": "6.5.0",
"private": true,
"description": "Beautiful, data-driven animations for React.",
"main": "./index.js",
"types": "./index.d.ts",
"repository": "git+https://github.com/sghall/react-move.git",
"keywords": [
"react-move",
"resonance",
"d3",
"svg",
"react",
"charts",
"graphs",
"animation",
"transitions",
"interpolation"
],
"contributors": [
{
"name": "Steven Hall",
"email": "[email protected]"
},
{
"name": "Tanner Linsley",
"email": "[email protected]",
"url": "http://nozzle.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sghall/react-move/issues"
},
"homepage": "https://github.com/sghall/react-move#readme",
"scripts": {
"docs": "cd docs && npm install && npm run start",
"prebuild": "npm run build:cln",
"build": "npm run build:lib && npm run build:cpy",
"build:cln": "rimraf build",
"build:lib": "node ./scripts/build.js",
"build:cpy": "cross-env BABEL_ENV=cjs babel-node ./scripts/copy-files.js",
"lint": "eslint --fix src docs/src test --quiet --cache && echo \"eslint: no lint errors\"",
"test": "cross-env BABEL_ENV=test mocha --exit \"src/**/*.spec.js\"",
"test:watch": "npm run test -- -w",
"test:coverage": "cross-env BABEL_ENV=coverage nyc mocha \"src/**/*.spec.js\" && nyc report --reporter=lcov",
"test:coverage:html": "cross-env BABEL_ENV=coverage nyc mocha \"src/**/*.spec.js\" && nyc report --reporter=html",
"pretty": "prettier-eslint src/**/*.js --write --no-semi --single-quote --trailing-comma=all --print-width 80",
"pretty-docs": "prettier-eslint docs/src/**/*.js --write --no-semi --single-quote --trailing-comma=all --print-width 80"
},
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"@babel/runtime": "^7.14.5",
"kapellmeister": "^3.0.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"cross-env": "^5.2.1",
"d3-interpolate": "^3.0.1",
"enzyme": "^3.11.0",
"eslint": "^7.28.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.24.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jsdom": "^13.2.0",
"lint-staged": "^11.0.0",
"mocha": "^7.2.0",
"nyc": "^14.1.1",
"prettier-eslint-cli": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^2.7.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.5.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"sourceMap": false,
"instrument": false
}
}