-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.72 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.72 KB
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
{
"name": "react-simple-scroll",
"version": "2.0.0",
"description": "Declarative API for SPA scroll position",
"main": "build/SimpleScroll.js",
"scripts": {
"test": "npm run unit && npm run lint",
"unit": "mocha --compilers jsx:babel-core/register --recursive test/setup.js test",
"build": "npm run clean && babel src/ -d build/",
"clean": "rimraf build",
"prepublish": "npm run build",
"lint": "eslint --ext .jsx --ext .js src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/button/react-simple-scroll.git"
},
"keywords": [
"react",
"component",
"scroll"
],
"author": "Button (https://www.usebutton.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/button/react-simple-scroll/issues"
},
"homepage": "https://github.com/button/react-simple-scroll#readme",
"peerDependencies": {
"react": "^16.0.0",
"react-router": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-button": "1.0.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.9.0",
"expect.js": "^0.3.1",
"jsdom": "^9.9.1",
"lodash.isequal": "^4.5.0",
"mocha": "^3.2.0",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rimraf": "^2.5.4",
"sinon": "7.5.0"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"build/"
],
"dependencies": {}
}