forked from pmndrs/react-spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.93 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
{
"name": "react-spring",
"version": "5.4.3",
"description": "Animate React with ease",
"main": "dist/web.cjs.js",
"module": "dist/web.js",
"typings": "index.d.ts",
"files": [
"dist",
"src",
"API.md",
"index.d.ts"
],
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "npm run build",
"test": "jest",
"test:ts": "tsc --noEmit",
"postinstall": "node -e \"console.log('\\u001b[35m\\u001b[1mEnjoy react-spring? You can now donate to our open collective:\\u001b[22m\\u001b[39m\\n > \\u001b[34mhttps://opencollective.com/react-spring/donate\\u001b[0m')\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/react-spring.git"
},
"keywords": [
"react",
"motion",
"animated",
"animation",
"spring"
],
"author": "Paul Henschel",
"license": "ISC",
"bugs": {
"url": "https://github.com/drcmda/react-spring/issues"
},
"homepage": "https://github.com/drcmda/react-spring#readme",
"devDependencies": {
"@babel/core": "7.0.0-beta.51",
"@babel/plugin-transform-runtime": "^7.0.0-beta.51",
"@babel/preset-env": "7.0.0-beta.51",
"@babel/preset-react": "7.0.0-beta.51",
"@babel/preset-stage-3": "^7.0.0-beta.51",
"@types/react": "^16.4.6",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.2.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"husky": "^1.0.0-rc.12",
"jest": "^23.3.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"rimraf": "2.6.2",
"rollup": "0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-size-snapshot": "^0.6.0",
"rollup-plugin-uglify": "^4.0.0",
"typescript": "^2.9.2"
},
"peerDependencies": {
"prop-types": "15.x.x",
"react": ">= 16.3.2",
"react-dom": ">= 16.3.2"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.51"
},
"jest": {
"setupFiles": [
"./tests/jest.setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"jest"
],
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.jsx?$",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-spring"
}
}