-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "grudus-timepicker",
"version": "1.0.2",
"description": "Material design time picker in pure Javascript without any dependencies",
"main": "dist/grudus-timepicker.es5.js",
"jsnext:main": "dist/grudus-timepicker.js",
"scripts": {
"prebuild": "eslint src/**/*.js && npm run css",
"build": "rollup -c rollup/es5.js && rollup -c rollup/umd.js && rollup -c rollup/es6.js",
"patch": "npm version patch && npm publish && git push --tags && git push",
"dev": "rollup -w -c rollup/es5.js",
"fix": "eslint src/**/*.js --fix",
"css": "postcss src/**/*.css --use autoprefixer --no-map -d dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grudus/Timepicker.git"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.4.0",
"postcss-cli": "^4.1.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.0.27"
},
"keywords": [
"vanillajs",
"javascript",
"js",
"materialdesign",
"material",
"design",
"timepicker"
],
"author": "grudus",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/grudus/Timepicker/issues"
},
"homepage": "https://github.com/grudus/Timepicker#readme"
}