-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "@oacore/api",
"version": "1.0.10",
"description": "CORE API client written in Javascript",
"main": "dist/index.js",
"repository": "https://github.com/oacore/api-client.git",
"author": "CORE Team <[email protected]>",
"license": "MIT",
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "babel ./src --out-dir ./dist --watch",
"build": "babel ./src --out-dir ./dist --source-maps",
"lint:json": "prettier --ignore-path .gitignore --check '**/*.json'",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.jsx src",
"lint": "run-p lint:*"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@oacore/eslint-config-base": "^1.0.3",
"@oacore/prettier-config": "^1.0.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1"
},
"dependencies": {
"agentkeepalive": "^4.1.2",
"axios": "^0.19.2"
}
}