forked from gilbarbara/react-joyride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.52 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
{
"name": "react-joyride",
"version": "2.0.0",
"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/",
"keywords": [
"react",
"react-component",
"tooltips",
"joyride",
"walkthroughs",
"tour"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"src"
],
"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"
},
"dependencies": {
"deep-diff": "^1.0.1",
"deepmerge": "^2.1.1",
"exenv": "^1.2.2",
"is-lite": "^0.2.0",
"nested-property": "^0.0.7",
"react-floater": "^0.5.5",
"react-proptype-conditional-require": "^1.0.4",
"scroll": "^2.0.3",
"scroll-doc": "^0.2.1",
"scrollparent": "^2.0.1",
"tree-changes": "^0.3.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"date-fns": "^1.29.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.76.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"jest-chain": "^1.0.3",
"jest-environment-jsdom-global": "^1.1.0",
"jest-enzyme": "^6.0.2",
"jest-extended": "^0.7.2",
"jest-watch-typeahead": "^0.2.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:es",
"build:cjs": "cross-env NODE_ENV=production npm run build:cjs:src && npm run build:cjs:constants",
"build:cjs:src": "rollup -c -f cjs -o lib/index.js",
"build:cjs:constants": "rollup -i src/constants/index.js -c -f cjs -o lib/constants.js",
"build:es": "cross-env NODE_ENV=production npm run build:es:src && npm run build:es:constants",
"build:es:src": "cross-env NODE_ENV=production rollup -c",
"build:es:constants": "cross-env NODE_ENV=production rollup -i src/constants/index.js -c -o es/constants.js",
"watch": "cross-env NODE_ENV=production rollup -cw",
"clean": "rimraf es && rimraf lib",
"lint": "eslint --ext .js --ext .jsx src test",
"test": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "node tools commits && npm run lint && npm test",
"postmerge": "node tools update && npm update",
"prepublishOnly": "npm run build"
}
}