-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@aptoma/drpublish-plugin-api",
"version": "3.17.1",
"repository": {
"type": "git",
"url": "https://github.com/aptoma/drpublish-plugin-api.git"
},
"main": "js/PluginAPI.js",
"scripts": {
"test": "karma start --single-run --no-auto-watch",
"test:watch": "karma start",
"prebuild": "rimraf dist",
"build": "webpack --env production",
"start": "nodemon --watch webpack.config.js --exec \"webpack --progress --watch --env development\"",
"release": "release-it -n -i patch",
"release:minor": "release-it -n -i minor",
"release:major": "release-it -n -i major"
},
"license": "MIT",
"devDependencies": {
"@aptoma/eslint-config": "^4.0.0",
"@babel/cli": "7.1.0",
"@babel/core": "7.1.0",
"@babel/preset-env": "7.1.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^5.6.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-compat": "^2.5.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.6.0",
"jquery": "~> 3.0.0",
"jsdoc-to-markdown": "^5.0.3",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^3.0.5",
"nodemon": "^1.19.4",
"release-it": "^2.9.0",
"rimraf": "^2.7.1",
"terser-webpack-plugin": "1.1.0",
"webpack": "^4.44.2",
"webpack-cli": "3.1.1",
"webpack-merge": "^4.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=6.9.0"
},
"dependencies": {
"gulp": "^4.0.2",
"resolve-cwd": "^3.0.0"
}
}