-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "unswitch",
"version": "1.4.0",
"description": "A tiny event handler for switch controllers on the web.",
"main": "dist/unswitch.es.js",
"unpkg": "dist/unswitch.iife.js",
"scripts": {
"demo": "cross-env DEBUG=true rollup -c -w",
"build": "npm run es && npm run iife",
"es": "rollup -c -f es -o $npm_package_main && gzip-size $npm_package_main",
"iife": "rollup -c -f iife -o $npm_package_unpkg && gzip-size $npm_package_unpkg",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaneenige/unswitch.git"
},
"license": "MIT",
"author": {
"name": "Colin van Eenige",
"email": "[email protected]",
"url": "https://use-the-platform.com"
},
"files": [
"src",
"dist"
],
"keywords": [
"controller",
"input"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"gzip-size-cli": "^3.0.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"browser": true
}
}
}