-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "@switch-company/form-utils",
"version": "1.0.1",
"description": "Convenience methods for form datas",
"main": "dist/formUtils.js",
"module": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rollup -c && rollup -c rollup.config.minified.js",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "[email protected]:Switch-Company/form-utils.git"
},
"author": {
"name": "Switch",
"email": "[email protected]",
"url": "http://switch.paris"
},
"license": "ISC",
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-idiomatic": "^4.0.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0"
}
}