-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "@steinrein/wizerd-forms",
"version": "1.0.9",
"description": "Library for creating flexible multistep forms.",
"main": "dist/wizerdform.bundle.js",
"types": "dist/umd/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"build": "webpack && tsc && tsc -m AMD --outDir dist/amd && tsc -m UMD --resolveJsonModule false --outDir dist/umd && tsc -m es6 --outDir dist/esm",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteinRein/wizerd-forms.git"
},
"keywords": [
"wizard form",
"multistep form",
"form libary"
],
"author": "Bastian Fießinger @SteinRein",
"license": "ISC",
"bugs": {
"url": "https://github.com/SteinRein/wizerd-forms/issues"
},
"homepage": "https://github.com/SteinRein/wizerd-forms#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"glob-all": "^3.2.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@s-libs/micro-dash": "^11.1.0"
}
}