-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.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
{
"name": "zangdar",
"version": "1.3.4",
"description": "A JavaScript library to simply generate and handle HTML form wizards",
"main": "index.js",
"scripts": {
"dev": "ENV=development ./node_modules/.bin/webpack --config webpack.config.js",
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"doc": "jsdoc -p -R README.md -a all -c jsdoc.conf.json",
"deploy-dry": "DEBUG=true node deploy.js",
"deploy": "node deploy.js",
"test": "jest --watchAll --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betaWeb/zangdar.git"
},
"keywords": [
"javascript",
"form",
"wizard",
"html",
"simple",
"handle",
"js",
"magic"
],
"author": "Cyprien GLEPIN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betaWeb/zangdar/issues"
},
"homepage": "https://github.com/betaWeb/zangdar#readme",
"dependencies": {
"@babel/polyfill": "^7.8.7"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@pixi/jsdoc-template": "^2.6.0",
"@testing-library/jest-dom": "^5.4.0",
"@types/jest": "^25.2.1",
"babel-loader": "^8.1.0",
"better-docs": "^1.4.7",
"colors": "^1.4.0",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"jest-extended": "^0.11.5",
"jsdoc": "^3.6.3",
"jsdom": "^16.2.2",
"ora": "^4.0.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}