-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
101 lines (101 loc) · 2.59 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@formio/bootstrap",
"version": "3.1.0-dev.1",
"description": "Bootstrap templates for Form.io forms",
"main": "lib/cjs/bootstrap5.js",
"module": "lib/mjs/bootstrap5.js",
"exports": {
".": {
"import": "./lib/cjs/bootstrap5.js",
"require": "./lib/cjs/bootstrap5.js"
},
"./components": {
"import": "./lib/cjs/templates/components/index.js",
"require": "./lib/cjs/templates/components/index.js"
},
"./bootstrap3": {
"import": "./lib/cjs/bootstrap3.js",
"require": "./lib/cjs/bootstrap3.js"
},
"./bootstrap4": {
"import": "./lib/cjs/bootstrap4.js",
"require": "./lib/cjs/bootstrap4.js"
},
"./bootstrap5": {
"import": "./lib/cjs/bootstrap5.js",
"require": "./lib/cjs/bootstrap5.js"
}
},
"typesVersions": {
"*": {
"bootstrap3": [
"lib/mjs/bootstrap3.d.ts"
],
"bootstrap4": [
"lib/mjs/bootstrap4.d.ts"
],
"bootstrap5": [
"lib/mjs/bootstrap5.d.ts"
]
}
},
"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": "rm -rf ./lib && tsc --project tsconfig.cjs.json && tsc --project tsconfig.mjs.json && gulp templates && webpack && node ./libpackage.js",
"lint": "tslint -p .",
"prepublish": "npm run build"
},
"pre-commit": [
"lint",
"test"
],
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/formio/bootstrap3.git"
},
"keywords": [
"Form.io",
"USWDS",
"Us",
"Web",
"Design",
"Standards"
],
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/ejs": "^3.1.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^5.0.0",
"copy-props": "^4.0.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.2",
"tslint": "^6.1.3",
"typescript": "~5.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.0.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/bootstrap3/issues"
},
"homepage": "https://github.com/formio/bootstrap3#readme",
"dependencies": {}
}