-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "@kakadu-dev/base-frontend-helpers",
"version": "2.3.4",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kakadu-dev/base-frontend-helpers.git"
},
"keywords": [
"helpers",
"react"
],
"author": "kakadu-dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/kakadu-dev/base-frontend-helpers/issues"
},
"homepage": "https://github.com/kakadu-dev/base-frontend-helpers#readme",
"dependencies": {
"axios": "^0.24.0",
"lodash": "^4.17.21",
"set-cookie-parser": "^2.4.8"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"main": "src/index.js",
"scripts": {
"clean": "git clean -fd",
"test": "jest",
"test:c": "jest --coverage",
"build": "BABEL_ENV=production ESM=true babel src -d . --copy-files",
"prepublish": "./publish-hooks.sh",
"postpublish": "./publish-hooks.sh revert && git clean -fd"
},
"description": "Base frontend helpers for ReactJS & React-Native applications",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-plugin-module-resolver": "^4.0.0",
"core-js": "^3.6.4",
"metro-react-native-babel-preset": "^0.59.0",
"jest": "^25.2.3",
"babel-jest": "^25.2.3"
}
}