This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
forked from formio/ngFormio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.02 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
{
"name": "ng-formio",
"version": "4.18.0-rc.1",
"description": "The form redering engine behind Form.IO.",
"main": "dist/ng-formio.js",
"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": {
"angular": "^1.7.8",
"formiojs": "^4.12.7"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"babel-loader": "^8.2.1",
"core-js": "^3.8.3",
"css-loader": "^5.0.2",
"eslint-loader": "^4.0.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.1.1",
"formiojs": "^4.12.7",
"hoek": "^6.1.3",
"html-loader": "^1.3.2",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^1.3.6",
"node-sass": "^5.0.0",
"postcss": "^8.2.6",
"postcss-loader": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.2"
},
"optionalDependencies": {
"json-logic-js": "^2.0.0"
},
"browserslist": [
"last 2 versions"
],
"browserify": {
"transform": [
"strictify",
"brfs"
]
}
}