forked from gilbarbara/react-joyride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.16 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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-joyride",
"version": "1.11.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",
"module": "es/index.js",
"files": [
"es",
"lib",
"src"
],
"keywords": [
"react",
"react-component",
"tooltips",
"joyride",
"walkthroughs",
"tour"
],
"license": "MIT",
"dependencies": {
"eslint-plugin-import": "^2.8.0",
"nested-property": "^0.0.7",
"scroll": "^2.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"prop-types": "^15.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bootstrap": "^4.0.0-beta.2",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"chalk": "^2.3.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"date-fns": "^1.29.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"flow-bin": "^0.59.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"image-webpack-loader": "^3.4.2",
"jest-cli": "^21.2.1",
"jsdom": "^11.3.0",
"nightwatch": "^0.9.16",
"node-sass": "4.6.1",
"postcss-cli": "^4.1.1",
"postcss-loader": "^2.0.8",
"prop-types": "^15.6.0",
"react": "^16.1.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.1.0",
"react-hot-loader": "^3.1.2",
"react-test-renderer": "^16.1.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"source-map-support": "^0.5.0",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-declaration-strict-value": "^1.0.4",
"stylelint-order": "^0.7.0",
"stylelint-scss": "^2.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1"
},
"scripts": {
"build": "npm run clean && npm run build:commonjs && npm run build:es && npm run build:css && cp src/styles/react-joyride.scss lib/",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src/scripts -d lib",
"build:es": "cross-env NODE_ENV=production babel src/scripts -d es",
"build:css": "node-sass src/styles/react-joyride.scss -o lib/ && postcss lib/react-joyride.css --use autoprefixer -d lib/ && mv lib/react-joyride.css lib/react-joyride-compiled.css",
"watch": "npm run build:commonjs -- -w",
"clean": "rimraf es && rimraf lib",
"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 config/jest.config.js --coverage",
"test:watch": "jest --config config/jest.config.js --watch",
"test:ui": "npm start -- test:ui",
"precommit": "node config/tools commits && npm run lint && npm run lint:styles && npm test",
"postmerge": "node config/tools update && npm update",
"prepublishOnly": "npm run build"
}
}