-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "custom-range-input",
"version": "0.2.3",
"license": "BSD-3-Clause",
"main": "dist/customrangeinput.js",
"description": "Provides CustomRangeInput custom element in ES2015 modules and in a ES5 script",
"keywords": [
"HTML5",
"ES6 ES2015",
"WebComponents",
"CustomElements",
"Range",
"Input",
"Element"
],
"repository": {
"type": "git",
"url": "git+https://github.com/misttechnologies/custom-range-input.git"
},
"author": "Shintaro Tanaka <[email protected]> (https://github.com/qpSHiNqp)",
"scripts": {
"prepare": "npm run submodule && npm run build",
"version": "npm run build && git add dist",
"postversion": "git push --tags",
"submodule": "git submodule update --init --recursive",
"clean": "rm -r ./dist || exit 0",
"test": "wct --plugin local",
"build": "npm run lint && webpack",
"lint": "eslint src/js/",
"watch": "webpack --watch",
"serve": "serve ./"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"selenium-standalone": "3.0.1",
"serve": "^6.0.6",
"uglify-save-license": "^0.4.1",
"web-component-tester": "^5.0.0",
"webpack": "^3.5.6"
},
"bugs": {
"url": "https://github.com/misttechnologies/custom-range-input/issues"
},
"homepage": "https://github.com/misttechnologies/custom-range-input#readme",
"dependencies": {}
}