-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "@formio/module-example",
"version": "1.0.0",
"description": "Example module for form.io",
"main": "lib/index.js",
"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",
"build": "tsc && gulp templates",
"lint": "tslint -p .",
"prepublish": "npm run build"
},
"pre-commit": [
"lint",
"test"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/formio/module-example.git"
},
"keywords": [
"Form.io",
"components"
],
"author": "Randall Knutson <[email protected]>",
"license": "ICS",
"bugs": {
"url": "https://github.com/formio/module-example/issues"
},
"homepage": "https://github.com/formio/module-example#readme",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/ejs": "^2.6.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.2",
"@types/sinon": "^7.5.0",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.4.0",
"gulp-template": "^5.0.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"ts-sinon": "^1.0.24",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"dependencies": {
"formiojs": "^4.4.2",
"lodash": "^4.17.15"
}
}