-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@bitchcraft/ocake",
"version": "1.0.3",
"private": false,
"description": "Object keys case converter (and collection of case string converters)",
"license": "BSD-3-Clause",
"dependencies": {
"@babel/runtime-corejs3": "^7.8.3",
"no-case": "^3.0.3",
"set-value": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-flowtype-errors": "^4.1.0",
"eslint-plugin-import": "^2.17.3",
"eventsource-polyfill": "^0.9.6",
"expect": "^24.8.0",
"flow-bin": "^0.116.1",
"jest": "^24.8.0",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"unmockedModulePathPatterns": [
"babel-loader",
"babel-plugin-react-transform",
"babel-jest"
]
},
"scripts": {
"test": "node_modules/jest/bin/jest.js",
"prestart": "yarn install; yarn run test; if [ -e ./dist ]; then rm -rf ./dist; fi;",
"start": "yarn run bundle",
"bundle": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --progress"
},
"author": "Josh Li (https://github.com/maddrag0n)",
"contributors": [],
"main": "lib/ocake.es5.js",
"repository": "https://github.com/bitchcraft/unicorn-logger"
}