forked from okonet/react-scroll-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
{
"name": "react-scroll-sync",
"version": "0.1.2",
"description": "Syncronize scroll positions across multiple scrollable containers",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && webpack",
"prerelease": "npm run lint && npm run build",
"release": "npmpub",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"styleguide:server": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git+https://github.com/okonet/react-scroll-sync.git"
},
"keywords": [],
"author": "Andrey Okonetchnikov <andrey@okonet.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okonet/react-scroll-sync/issues"
},
"homepage": "https://github.com/okonet/react-scroll-sync#readme",
"eslintConfig": {
"extends": "okonet",
"rules": {
"react/forbid-prop-types": 0
},
"import/no-extraneous-dependencies": [
"error",
{
"peerDependencies": [
"src/*.js"
],
"devDependencies": [
"**/*.test.js",
"**/*.spec.js"
]
}
]
},
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"eslint": "^3.7.1",
"eslint-config-okonet": "^1.1.1",
"jest": "^16.0.0",
"lint-staged": "^3.0.3",
"npmpub": "^3.1.0",
"pre-commit": "^1.1.3",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-styleguidist": "^5.0.0-beta8",
"rimraf": "^2.5.4",
"webpack": "^1.13.2"
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
}
}