-
-
Notifications
You must be signed in to change notification settings - Fork 650
/
package.json
97 lines (97 loc) · 3.15 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
{
"name": "shepherd.js",
"version": "2.0.0-beta.17",
"repository": {
"type": "git",
"url": "git+https://github.com/shipshapecode/shepherd.git"
},
"description": "Guide your users through a tour of your app.",
"authors": [
"Adam Schwartz <adam.flynn.schwartz@gmail.com>",
"Zack Bloom <zackbloom@gmail.com>"
],
"maintainers": [
"Nicholas Hwang <nick.joosung.hwang@gmail.com>",
"Geoff Daigle <geoffreydaigle@gmail.com>",
"Robert Wagner <rwwagner90@gmail.com>",
"Chuck Carpenter <charleswcarpenter3@gmail.com>"
],
"scripts": {
"build": "yarn clean && webpack --mode production",
"postbuild": "rm -f dist/removable-*",
"clean": "rm -rf dist",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run",
"start": "yarn watch",
"start-test-server": "http-server",
"test:ci": "yarn test:unit:ci && yarn test:cy:ci",
"test:cy:ci": "start-server-and-test start-test-server http://localhost:8080 cy:run",
"test:cy:watch": "start-server-and-test start-test-server http://localhost:8080 cy:open",
"test:unit:ci": "karma start --single-run --browsers ChromeHeadlessNoSandbox",
"test:unit:watch": "karma start --browsers Chrome",
"test": "mocha",
"watch": "yarn clean && webpack --watch --mode development"
},
"homepage": "http://shipshapecode.github.io/shepherd/docs/welcome/",
"license": "MIT",
"main": "dist/js/shepherd.js",
"spm": {
"main": "shepherd.js"
},
"dependencies": {
"element-matches": "^0.1.2",
"lodash": "^4.17.10",
"popper.js": "^1.14.3"
},
"devDependencies": {
"autoprefixer": "^9.1.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.24.6",
"browser-sync-webpack-plugin": "^2.2.2",
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"cypress": "^3.0.3",
"del": "^3.0.0",
"eslint": "^5.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-ship-shape": "^0.6.0",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"http-server": "^0.11.1",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "^5.2.0",
"node-sass": "^4.9.2",
"postcss": "^7.0.2",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.3",
"start-server-and-test": "^1.7.0",
"style-loader": "^0.22.1",
"stylelint-config-ship-shape": "^0.4.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"engines": {
"node": ">= 6.*"
}
}