-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
113 lines (113 loc) · 3.19 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
{
"name": "rangeslider-js",
"version": "3.2.5",
"main": "./dist/rangeslider-js.min.js",
"description": "lightweight range slider",
"author": "Steffen Bär <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stbaer/rangeslider-js",
"repository": {
"type": "git",
"url": "https://github.com/stbaer/rangeslider-js.git"
},
"bugs": {
"url": "https://github.com/stbaer/rangeslider-js/issues"
},
"keywords": [
"rangeslider",
"plugin",
"ui",
"range",
"slider"
],
"scripts": {
"prelint": "echo \"running eslint...\" && exit 0",
"lint": "eslint -c ./.eslintrc.js --ext .js src config",
"lintfix": "npm run lint -- --fix",
"dev": "NODE_ENV=development webpack-dev-server --config webpack.config.js --env=development --progress --profile --colors --inline",
"prebuild": "npm run lint && rm -rf ./dist",
"build": "NODE_ENV=production webpack --config webpack.config.js --env=production --progress --profile --colors",
"analyze": "npm run build --report",
"postbuild": "csso src/styles.css > dist/styles.min.css",
"pretest": "echo \"running tests...\" && exit 0",
"test": "NODE_ENV=testing ava -v",
"serve:docs": "docute ./docs",
"release": "gf-release"
},
"dependencies": {
"custom-event": "^1.0.1",
"ev-pos": "^1.0.1"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-stage-2": "7.0.0",
"@babel/register": "7.4.4",
"autoprefixer": "9.5.1",
"ava": "1.4.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"babel-runtime": "6.26.0",
"browser-env": "3.2.6",
"css-loader": "2.1.1",
"csso-cli": "2.0.2",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "2.1.2",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "9.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"file-loader": "3.0.1",
"friendly-errors-webpack-plugin": "1.7.0",
"gf-release": "1.4.5",
"html-webpack-plugin": "3.2.0",
"mkdirp": "^0.5.1",
"nodes-each": "1.0.3",
"progress-bar-webpack-plugin": "1.12.1",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack": "4.31.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1"
},
"files": [
"dist/",
"src/"
],
"ava": {
"concurrency": 5,
"failFast": false,
"require": [
"./test/helpers/ava-setup.js"
]
},
"releaseConfig": {
"buildCommand": "npm run build && git add -A && git commit -am \"updated build (--)\"; ",
"versionFiles": [
"package.json",
"package-lock.json"
],
"commitMessagesExclude": [
"Merge tag",
"Merge branch 'release",
"Merge branch 'develop' into",
"bumped",
"bumbed",
"(--)",
"Merge branch 'feature/",
"updated build",
"bumped version"
],
"commitBaseUrl": "https://github.com/stbaer/rangeslider-js/commits",
"historyFile": "History.md"
},
"engines": {
"node": ">=10",
"npm": ">=6"
}
}