-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "@mtrudw/fabric-publisher-tools",
"version": "0.1.0",
"main": "dist/fabricPublisherTools.min.js",
"license": "MIT",
"homepage": "https://github.com/mtrudw/fabricPublisherTools",
"bugs": {
"url": "https://github.com/mtrudw/fabricPublisherTools/issues"
},
"author": "Matthias Trudewind [email protected]",
"repository": {
"type": "git",
"url": "https://github.com/mtrudw/fabricPublisherTools.git"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"babel-jest": "^26.1.0",
"jest": "^26.1.0",
"jsdoc": "^3.6.4",
"rollup": "^2.21.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-serve": "^1.0.2",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"fabric": "^3.6.3"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "jest",
"doc": "jsdoc src -r -d docs"
}
}