-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
52 lines (52 loc) · 1.7 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": "ng-formio",
"version": "5.0.0-rc.7",
"description": "The form redering engine behind Form.IO.",
"main": "lib/index.js",
"style": "dist/formio.css",
"scripts": {
"test": "node test/test",
"build": "babel --verbose ./src --ignore=*.spec.js --out-dir ./lib && webpack --config config/webpack.dev.js && webpack --config config/webpack.prod.js",
"watch": "babel --verbose ./src --ignore=*.spec.js --out-dir ./lib --watch & webpack --config config/webpack.prod.js --watch",
"tagbuild": "VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && npm run build && git add -A && git commit -m \"Build $Version\" || true && git push origin master && git tag v$VERSION && git push origin --tags",
"release": "npm run tagbuild && npm publish;"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@formio/js": "^5.0.0-rc.35",
"angular": "^1.7.8"
},
"files": [
"dist",
"lib"
],
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-export-default-from": "^7.24.1",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.24.5",
"@formio/js": "5.0.0-dev.5641.3b5157b",
"core-js": "^3.37.1",
"eslint-loader": "^4.0.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"hoek": "^6.1.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^3.0.0"
},
"optionalDependencies": {
"json-logic-js": "^2.0.0"
},
"browserslist": [
"last 2 versions"
],
"browserify": {
"transform": [
"strictify",
"brfs"
]
}
}