forked from makotot/react-scrollspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-scrollspy",
"version": "2.7.1",
"description": "react scrollspy component",
"main": "./scrollspy.js",
"files": [
"README.md",
"scrollspy.js",
"package.json",
"gulpfile.js",
".eslintrc"
],
"scripts": {
"build": "./node_modules/.bin/babel ./src/js/lib/Scrollspy.jsx --out-file ./scrollspy.js",
"prepublish": "npm run build",
"serve": "gulp serve",
"start": "npm run serve",
"lint": "gulp lint",
"docs": "gulp clean && gulp compile",
"test": "npm run lint && ./node_modules/.bin/ava test/test.js --verbose"
},
"ava": {
"require": [
"babel-register"
],
"babel": {
"babelrc": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/makotot/react-scrollspy.git"
},
"author": "makotot",
"license": "MIT",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.6.5",
"babel-eslint": "^4.1.8",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.11.6",
"babelify": "^7.2.0",
"browser-sync": "^2.11.1",
"browserify": "^13.0.0",
"construct-css": "git+https://github.com/makotot/construct.git",
"del": "^2.2.0",
"enzyme": "^2.4.1",
"eslint-config-makotot": "0.0.6",
"eslint-plugin-react": "^4.2.3",
"gulp": "^3.9.1",
"gulp-ejs": "^1.2.2",
"gulp-eslint": "^1.1.1",
"gulp-sass": "^2.2.0",
"jsx-test-helpers": "^1.1.0",
"react": ">=0.14.0",
"react-addons-test-utils": ">=0.14.0",
"react-dom": ">=0.14.0",
"react-highlight": "^0.9.0",
"run-sequence": "^1.1.5",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"react-addons-test-utils": ">=0.14.0"
},
"dependencies": {
"classnames": "^2.2.5"
},
"keywords": [
"react",
"react-component",
"component",
"scrollspy",
"scroll"
]
}