forked from socialtables/react-user-tour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.1 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
{
"name": "react-user-tour",
"version": "2.5.0",
"description": "give your user a guided tour around your application",
"main": "dist/index.js",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
]
]
},
"scripts": {
"test": "npm run build && npm run lint && browserify test/index.js | tap-closer | smokestack -b firefox | tap-status",
"test-debug": "npm run build && npm run lint && browserify test/index.js | smokestack | tap-status",
"lint": "./node_modules/.bin/eslint ./src",
"build": "babel src --out-dir dist",
"build-demo": "browserify demo/index.js -o demo/bundle.js",
"watch": "babel src --watch --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/am6010/react-user-tour.git"
},
"bugs": {
"url": "https://github.com/socialtables/react-user-tour/issues"
},
"homepage": "https://github.com/socialtables/react-user-tour",
"keywords": [
"onboarding",
"user",
"tour",
"user-tour",
"tour-guide",
"guide",
"joyride",
"hopscotch",
"shepard",
"react"
],
"author": "Social Tables",
"license": "Apache-2.0",
"dependencies": {
"react-motion": "^0.4.2",
"scroll-to": "0.0.2"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.13.1",
"react": "^0.14.5",
"react-addons-test-utils": "^0.14.5",
"react-dom": "^0.14.5",
"sinon": "^1.17.2",
"smokestack": "^3.4.1",
"tap-closer": "^1.0.0",
"tap-status": "^1.0.1",
"tape": "^4.4.0",
"tape-catch": "^1.0.4"
},
"peerDependencies": {
"react": ">= 0.14.0"
}
}