-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 KB
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
{
"name": "@intothesource/slider",
"version": "1.2.3",
"description": "",
"main": "dist/slider.js",
"module": "src/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist/slider.js",
"src"
],
"scripts": {
"cy:run": "cypress run",
"cy:open": "cypress open",
"build": "webpack --mode production",
"postbuild": "cp -Rv {photos,assets} dist",
"start:dev": "webpack-dev-server --mode development --port 8080",
"test": "start-server-and-test start:dev http://localhost:8080 cy:run",
"test:dev": "start-server-and-test start:dev http://localhost:8080 cy:open",
"version": "npm run build",
"deploy:gh-pages": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intothesource/slider.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/intothesource/slider/issues"
},
"homepage": "https://github.com/intothesource/slider#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"cypress": "^3.4.1",
"eslint": "^6.5.1",
"eslint-plugin-cypress": "^2.7.0",
"gh-pages": "^2.1.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"start-server-and-test": "^1.10.4",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"debounce": "^1.2.0"
}
}