-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 886 Bytes
/
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
{
"name": "simple-axios-interceptors",
"version": "1.0.4",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Dak Washbrook",
"url": "https://dak.dev"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Vinlock/simple-axios-interceptor"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-dynamic-import-node": "^2.3.0"
},
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "babel -d ./dist ./src --source-maps inline --ignore '**/*.test.js' --copy-files",
"test": "jest"
}
}