forked from gilbarbara/react-joyride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.38 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-joyride",
"version": "1.10.1",
"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": "lib/index.js",
"keywords": [
"react",
"react-component",
"tooltips",
"joyride",
"walkthroughs",
"tour"
],
"license": "MIT",
"dependencies": {
"nested-property": "^0.0.7",
"react-autobind": "^1.0",
"scroll": "^2.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"autoprefixer": "^6.7",
"babel-core": "^6.22",
"babel-eslint": "^7.1",
"babel-jest": "^18.0",
"babel-loader": "^6.2",
"babel-plugin-istanbul": "^3.1",
"babel-plugin-transform-flow-strip-types": "^6.22",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-plugin-transform-runtime": "^6.22",
"babel-preset-latest": "^6.22",
"babel-preset-react": "^6.22",
"babel-preset-stage-1": "^6.22",
"bootstrap": "^4.0.0-alpha",
"browser-sync": "^2.18",
"browser-sync-webpack-plugin": "^1.1",
"chalk": "^1.1.3",
"clean-webpack-plugin": "^0.1",
"copy-webpack-plugin": "^4.0",
"css-loader": "^0.26",
"date-fns": "^1.27",
"enzyme": "^2.7",
"eslint": "^3.14",
"eslint-config-airbnb": "^14.0",
"eslint-import-resolver-webpack": "^0.8",
"eslint-loader": "^1.6",
"eslint-plugin-babel": "^4.0",
"eslint-plugin-flowtype": "^2.30",
"eslint-plugin-import": "^2.2",
"eslint-plugin-jsx-a11y": "^3.0",
"eslint-plugin-react": "^6.9",
"extract-text-webpack-plugin": "^2.0.0-beta",
"flow-bin": "^0.38",
"html-webpack-plugin": "^2.26",
"husky": "^0.13",
"image-webpack-loader": "^3.2",
"jest-cli": "^18.1",
"jsdom": "^9.9",
"nightwatch": "^0.9",
"node-sass": "^4.4",
"postcss-loader": "^1.2",
"react": "^15.4",
"react-addons-test-utils": "^15.4",
"react-dom": "^15.4",
"react-hot-loader": "^3.0.0-beta",
"sass-loader": "^4.1",
"source-map-support": "^0.4",
"style-loader": "^0.13",
"stylelint": "^7.7",
"stylelint-config-standard": "^15.0",
"stylelint-declaration-strict-value": "^1.0",
"stylelint-order": "^0.2",
"stylelint-scss": "^1.4",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"webpack-merge": "^2.6"
},
"scripts": {
"watch": "webpack --config config/webpack.config.js",
"build": "NODE_ENV=production webpack --config config/webpack.prod.js",
"start": "node demo/config/webpack.server.js",
"build:demo": "NODE_ENV=production webpack --config demo/config/webpack.build.js",
"lint": "eslint --ext .js --ext .jsx src test demo",
"lint:styles": "stylelint 'src/**/*.scss' 'demo/src/**/*.scss'",
"test": "jest --config .jestrc --coverage",
"test:watch": "jest --config .jestrc --watch",
"test:ui": "npm start -- test:ui",
"precommit": "node config/tools commits && npm run lint && npm run lint:styles && npm test",
"prepublish": "npm run build",
"postmerge": "node config/tools update && npm update"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
}
}