forked from gilbarbara/react-joyride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.77 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
{
"name": "react-joyride",
"version": "1.3.6",
"description": "Create walkthroughs and guided tours for your apps",
"author": "Gil Barbara <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/gilbarbara/react-joyride.git"
},
"bugs": {
"url": "https://github.com/gilbarbara/react-joyride/issues"
},
"homepage": "https://gilbarbara.github.com/react-joyride/",
"main": "index.js",
"license": "MIT",
"keywords": [
"react",
"react-component",
"tooltips",
"joyride",
"walkthroughs",
"tour"
],
"dependencies": {
"object-assign": "^4.0",
"scroll": "1.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0",
"babel-preset-es2015": "^6.6",
"babel-preset-react": "^6.5",
"babel-register": "^6.7",
"del": "^2.2",
"eslint": "^2.7",
"eslint-plugin-react": "^5.0",
"expect": "^1.16",
"gulp": "^3.9",
"gulp-autoprefixer": "^3.1",
"gulp-eslint": "^2.0",
"gulp-load-plugins": "^1.2",
"gulp-mocha": "^2.2",
"gulp-plumber": "^1.1",
"gulp-rename": "^1.2",
"gulp-sass": "^2.2",
"jsdom": "^8.3",
"merge-stream": "^1.0",
"mocha": "^2.4",
"react": "^15.0",
"react-addons-test-utils": "^15.0",
"react-dom": "^15.0",
"run-sequence": "^1.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"scripts": {
"start": "gulp serve",
"lint": "gulp lint",
"build": "gulp build",
"test": "gulp test",
"test-watch": "./node_modules/.bin/_mocha -R min --watch --compilers js:babel-register $(find app/scripts/__tests__ -name *.spec.js)"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
}
}