-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 KB
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
{
"name": "pluginize",
"version": "0.1.2",
"description": "The infrastructure package for creating your library / project.",
"main": "dist/pluginize.js",
"scripts": {
"test": "karma start",
"build": "rollup --config",
"deploy": "node ./src/index.js",
"testdeploy": "node ./dest/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bassdman/pluginize.git"
},
"keywords": [
"plugin",
"pluginize",
"infrastructure",
"library"
],
"author": "Manuel Gelsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/bassdman/pluginize/issues"
},
"homepage": "https://github.com/bassdman/pluginize#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"clean-webpack-plugin": "^3.0.0",
"rollup": "^2.28.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-karma-jasmine": "^4.0.0"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}