-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.06 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
{
"author": {
"name": "Colin Meinke",
"email": "[email protected]",
"url": "https://colinmeinke.com"
},
"babel": {
"env": {
"cjs": {
"presets": [
"es2015"
]
},
"umd": {
"presets": [
[
"es2015",
{
"modules": false
}
]
]
}
},
"plugins": [
"transform-object-rest-spread"
]
},
"bugs": {
"url": "https://github.com/serieseight/enable-buttons/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"description": "Automatically enable/disable buttons based on required form inputs",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"rimraf": "^2.5.4",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1",
"semantic-release": "^6.3.2",
"snazzy": "^5.0.0",
"standard": "^8.5.0"
},
"keywords": [
"automatically",
"button",
"disable",
"enable",
"form",
"input",
"required",
"vanilla"
],
"license": "ISC",
"main": "lib/index.js",
"name": "enable-buttons",
"repository": {
"type": "git",
"url": "https://github.com/serieseight/enable-buttons.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:umd",
"build:lib": "BABEL_ENV=cjs babel src --out-dir lib",
"build:umd": "npm run build:umd:dev && npm run build:umd:pro",
"build:umd:dev": "BABEL_ENV=umd rollup -c",
"build:umd:pro": "NODE_ENV=production BABEL_ENV=umd rollup -c",
"commit": "git-cz",
"fix": "standard --fix",
"lint": "standard --verbose | snazzy",
"prepublish": "npm run tidy && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"tidy": "rimraf lib dist",
"test": "exit 0"
},
"version": "0.0.0-development"
}