forked from sghall/react-move
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.53 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-move",
"version": "2.7.0",
"private": true,
"description": "Beautiful, data-driven animations for React.",
"main": "./index.js",
"types": "./index.d.ts",
"repository": "git+https://github.com/react-tools/react-move.git",
"keywords": [
"react-move",
"resonance",
"d3",
"svg",
"react",
"charts",
"graphs",
"animation",
"transitions",
"interpolation"
],
"contributors": [
{
"name": "Steven Hall",
"email": "hall.steven.g@gmail.com",
"url": "http://www.delimited.io"
},
{
"name": "Tanner Linsley",
"email": "tannerlinsley@gmail.com",
"url": "http://nozzle.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-tools/react-move/issues"
},
"homepage": "https://github.com/react-tools/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": "babel-node ./scripts/copy-files.js",
"lint": "eslint src docs/src test --quiet --cache && echo \"eslint: no lint errors\"",
"test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha \"src/**/*.spec.js\"",
"test:watch": "npm run test -- -w",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha \"src/**/*.spec.js\" && nyc report --reporter=lcov",
"test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha \"src/**/*.spec.js\" && nyc report --reporter=html",
"flow": "flow"
},
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0-beta.5"
},
"dependencies": {
"d3-interpolate": "^1.1.6",
"d3-timer": "^1.0.4"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.1",
"coveralls": "^2.13.3",
"cross-env": "^5.1.3",
"enzyme": "^2.8.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.2.0",
"flow-bin": "^0.47.0",
"fs-extra": "^4.0.3",
"glob": "^7.1.1",
"gzip-size": "^4.1.0",
"istanbul-lib-instrument": "^1.9.1",
"jsdom": "^11.6.2",
"minimist": "^1.2.0",
"mocha": "^3.5.0",
"nodemon": "^1.14.12",
"nyc": "^11.4.1",
"pretty-bytes": "^4.0.2",
"react": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^15.6.2",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^2.6.1",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^3.2.0"
},
"nyc": {
"all": true,
"require": [
"babel-register"
],
"include": [
"src/**/*.js",
"src/core/**/*.js"
],
"exclude": [
"docs/**/*.js",
"**/*.spec.js"
],
"sourceMap": false,
"instrument": false
}
}