-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
75 lines (75 loc) · 2.09 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
71
72
73
74
75
{
"name": "@formio/contrib",
"version": "2.0.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 ejsify --require jsdom-global/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 && sass ./src/sass/contrib.scss ./dist/formio-contrib.css",
"lint": "tslint -p .",
"prepublish": "npm run build"
},
"pre-commit": [
"lint"
],
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/formio/contrib.git"
},
"keywords": [
"Form.io",
"components"
],
"author": "Travis Tidwell <travis@form.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/premium/issues"
},
"homepage": "https://github.com/formio/premium#readme",
"peerDependencies": {
"@formio/js": "^5.0.0-rc.76"
},
"devDependencies": {
"@formio/js": "5.0.0-rc.76",
"@types/chai": "^4.2.11",
"@types/ejs": "^3.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/sinon": "^10.0.13",
"chai": "^4.2.0",
"ejs": "^3.1.10",
"ejsify": "^1.0.0",
"esm": "^3.2.25",
"eventemitter3": "^5.0.1",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0",
"jsdom": "^25.0.0",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"native-promise-only": "^0.8.1",
"nyc": "^15.0.1",
"pre-commit": "^1.2.2",
"sass": "^1.59.3",
"sinon": "^15.0.2",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.2",
"tslint": "^6.1.1",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}