forked from shipshapecode/shepherd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.87 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
{
"name": "shepherd.js",
"version": "4.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/shipshapecode/shepherd.git"
},
"description": "Guide your users through a tour of your app.",
"keywords": [
"site tour",
"tour",
"tutorial",
"shepherd"
],
"authors": [
"Adam Schwartz <[email protected]>",
"Zack Bloom <[email protected]>"
],
"maintainers": [
"Nicholas Hwang <[email protected]>",
"Geoff Daigle <[email protected]>",
"Robert Wagner <[email protected]>",
"Chuck Carpenter <[email protected]>"
],
"scripts": {
"build": "yarn clean && rollup -c",
"docs": "node_modules/.bin/jsdoc -c .jsdoc.js --verbose",
"esdoc": "esdoc",
"changelog": "github_changelog_generator -u shipshapecode -p shepherd --since-tag v4.0.0",
"clean": "rimraf dist",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run --browser chrome",
"rewrite-paths": "replace 'SF:.*src' 'SF:src' coverage/lcov.info",
"start": "yarn watch",
"start-test-server": "http-server -p 9002",
"test": "yarn test:ci",
"test:ci": "yarn test:unit:ci && yarn test:cy:ci",
"test:cy:ci": "yarn build && start-server-and-test start-test-server http://localhost:9002 cy:run",
"test:cy:watch": "yarn build && start-server-and-test start-test-server http://localhost:9002 cy:open",
"test:unit:ci": "jest --coverage",
"test:unit:watch": "jest --watch",
"view-coverage": "http-server -p 9003 ./coverage/lcov-report -o",
"watch": "yarn clean && rollup -c --environment DEVELOPMENT --watch"
},
"homepage": "https://shepherdjs.dev/demo/",
"license": "MIT",
"main": "dist/js/shepherd.js",
"types": "src/types/shepherd.d.ts",
"module": "dist/js/shepherd.esm.js",
"dependencies": {
"body-scroll-lock": "^2.6.4",
"element-matches": "^0.1.2",
"es6-object-assign": "^1.1.0",
"es6-symbol": "^3.1.1",
"nano-css": "^5.2.0",
"polished": "^3.4.1",
"preact": "^8.4.2",
"smoothscroll-polyfill": "^0.4.4",
"tippy.js": "^5.0.0-beta.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@testing-library/jest-dom": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.7.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^4.2.0",
"chai-dom": "^1.8.1",
"codeclimate-test-reporter": "^0.5.1",
"cypress": "^3.4.0",
"cypress-plugin-tab": "^1.0.1",
"del": "^5.0.0",
"eslint": "^6.1.0",
"eslint-config-standard-jsx": "^7.0.0",
"eslint-plugin-jest": "^22.13.7",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-ship-shape": "^0.6.0",
"glob": "^7.1.3",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"jest-expect-message": "^1.0.2",
"jest-transform-css": "^2.0.0",
"jsdoc": "^3.6.3",
"jsdoc-template-ship-shape": "^0.0.4",
"mutationobserver-shim": "^0.3.3",
"preact-jsx-chai": "^2.3.2",
"preact-render-spy": "^1.3.0",
"replace": "^1.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-analyzer": "^3.1.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-browsersync": "^1.0.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-license": "^0.9.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-visualizer": "^2.5.4",
"sinon": "^7.3.2",
"start-server-and-test": "^1.9.1"
},
"engines": {
"node": ">= 6.*"
}
}