-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "@formio/contrib",
"version": "1.1.0",
"description": "Contrib components for form.io",
"main": "lib/index.js",
"module": "node",
"scripts": {
"test:coverage": "nyc --reporter=text mocha --reporter spec './{,!(node_modules)/**/}*.spec.js'",
"test": "mocha --require ts-node/register --reporter spec './{,!(node_modules)/**/}*.spec.ts'",
"watch": "tsc -w",
"webpack:dev": "webpack",
"webpack:prod": "webpack --config webpack.prod.js",
"webpack:use": "webpack --config webpack.use.js",
"webpack": "npm run webpack:dev && npm run webpack:prod && npm run webpack:use",
"build": "tsc && gulp templates && npm run webpack && node-sass ./src/sass/contrib.scss",
"lint": "tslint -p .",
"prepublish": "npm run build"
},
"pre-commit": [
"lint",
"test"
],
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/formio/contrib.git"
},
"keywords": [
"Form.io",
"components"
],
"author": "Travis Tidwell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/premium/issues"
},
"homepage": "https://github.com/formio/premium#readme",
"peerDependencies": {
"formiojs": "^4.9.20"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/ejs": "^3.0.2",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.1",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0",
"mocha": "^7.1.1",
"node-sass": "^4.13.1",
"nyc": "^15.0.1",
"pre-commit": "^1.2.2",
"sinon": "^9.0.2",
"ts-node": "^8.9.0",
"ts-sinon": "^1.2.0",
"tslint": "^6.1.1",
"typescript": "^3.9.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"formiojs": "^4.9.26"
}
}