forked from formio/ngFormio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.76 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
{
"name": "ng-formio",
"version": "3.9.1",
"description": "The form redering engine behind Form.IO.",
"main": "dist/ng-formio.js",
"scripts": {
"test": "node test/test",
"build": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets es2015,stage-2; webpack --config config/webpack.dev.js; webpack --config config/webpack.prod.js",
"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\";git push origin 3.x;git tag v$VERSION;git push origin --tags",
"release": "npm run tagbuild; npm publish;",
"build-windows": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets es2015,stage-2 && webpack --config config/webpack.dev.js && webpack --config config/webpack.prod.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.4.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^1.0.1",
"eslint-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"hoek": "^6.1.2",
"html-loader": "^0.5.5",
"json-loader": "^0.5.7",
"node-sass": "^4.10.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"optionalDependencies": {
"json-logic-js": "^1.1.0"
},
"dependencies": {
"angular": "^1.7.5",
"formiojs": "^3.9.2"
},
"browserify": {
"transform": [
"strictify",
"brfs"
]
}
}