-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "@dzeio/form-manager",
"version": "0.3.0",
"homepage": "https://dze.io/",
"main": "./dist/commonjs/fm.js",
"browser": "./dist/browser/fm.js",
"module": "./dist/es6/fm.js",
"types": "./dist/types/FormManager.d.ts",
"description": "A powerfull Form Manager",
"keywords": [
"Form",
"Manager",
"dzeio",
"javascript",
"Typecript"
],
"repository": {
"type": "git",
"url": "https://git.delta-wings.net/dzeio/FormManager"
},
"bugs": {
"url": "https://git.delta-wings.net/dzeio/FormManager/issues",
"email": "contact@delta-wings.net"
},
"author": {
"name": "Aviortheking",
"email": "florian.bouillon@delta-wings.net",
"url": "https://dze.io"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.7.4",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-pluginutils": "^2.8.2",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"scripts": {
"build": "yarn run build:rollup && yarn run build:ts",
"build:rollup": "rollup --config",
"build:ts": "tsc --project tsconfig.cjs.json"
},
"installConfig": {
"pnp": false
},
"dependencies": {}
}