-
-
Notifications
You must be signed in to change notification settings - Fork 650
/
package.json
115 lines (115 loc) · 3.94 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
{
"name": "shepherd.js",
"version": "2.1.1",
"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 <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",
"esdoc": "esdoc",
"postbuild": "rm -f dist/removable-*",
"clean": "rm -rf dist",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run --env coverage=true",
"mocha-headless-chrome": "mocha-headless-chrome -c coverage/coverage.json -f test/unit/index.html -a no-sandbox",
"posttest:ci": "nyc report --reporter=lcov --reporter=text",
"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:build": "cross-env NODE_ENV=test yarn build",
"test:ci": "yarn test:unit:ci && yarn test:cy:ci",
"test:cy:ci": "yarn test:build && start-server-and-test start-test-server http://localhost:9002 cy:run",
"test:cy:watch": "yarn test:build && start-server-and-test start-test-server http://localhost:9002 cy:open",
"test:unit:ci": "cross-env NODE_ENV=test webpack --config webpack.test.config.js && yarn mocha-headless-chrome",
"test:unit:watch": "webpack-dev-server --config webpack.test.config.js",
"view-coverage": "http-server -p 9003 ./coverage/lcov-report -o",
"watch": "yarn clean && webpack --watch --mode development"
},
"homepage": "http://shipshapecode.github.io/shepherd/docs/welcome/",
"license": "MIT",
"main": "dist/js/shepherd.js",
"dependencies": {
"element-matches": "^0.1.2",
"lodash-es": "^4.17.11",
"tippy.js": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codeclimate-test-reporter": "^0.5.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cypress": "^3.1.4",
"del": "^3.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.11.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-ship-shape": "^0.6.0",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"glob": "^7.1.3",
"http-server": "^0.11.1",
"inject-loader": "^4.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"istanbul-lib-coverage": "^2.0.1",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "^5.2.0",
"mocha-headless-chrome": "^2.0.1",
"node-sass": "^4.11.0",
"nyc": "13.0.1",
"postcss": "^7.0.7",
"postcss-loader": "^3.0.0",
"replace": "^1.0.1",
"sass-loader": "^7.1.0",
"sinon": "^7.2.2",
"source-map-loader": "^0.2.3",
"start-server-and-test": "^1.7.11",
"style-loader": "^0.23.1",
"stylelint": "^8.4.0",
"stylelint-config-ship-shape": "^0.4.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"engines": {
"node": ">= 6.*"
},
"nyc": {
"temp-directory": "./coverage",
"report-dir": "./coverage"
}
}