forked from omarbenhamid/jsdap
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 924 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 924 Bytes
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
{
"name": "jsdap",
"version": "0.1.0",
"description": "JavaScript AJAX client for DAP services",
"main": "index.js",
"repository": "https://github.com/omarbenhamid/jsdap",
"author": "OMAR BENHAMID <http://obenhamid.me>",
"license": "MIT",
"private": false,
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^4.19.0",
"eslint-plugin-prettier": "^2.6.0",
"html-webpack-plugin": "^3.0.7",
"prettier": "^1.11.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"scripts": {
"lint": "eslint --format table --debug ./",
"lint:fix": "eslint --format table --debug --fix ./",
"serve": "webpack-dev-server --open --progress",
"build": "webpack --env.production --progress"
}
}