-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "@iaipes/apiclient",
"version": "0.2.0",
"description": "REST client for the IAIP API",
"main": "dist/api-client.min.js",
"repository": "https://github.com/iaipes/api-client-js",
"author": "IAIP <info@iaip.gob.sv>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"qs": "^6.5.2"
},
"scripts": {
"dev": "cross-env webpack --progress --hide-modules",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "node ./node_modules/nyc/bin/nyc.js node ./japaFile.js"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"file-loader": "^2.0.0",
"nyc": "^13.0.1",
"regenerator-runtime": "^0.12.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"nyc": {
"include": [
"src",
"lib"
],
"exclude": [
"test",
"japaFile.js"
]
}
}