-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2 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
77
78
79
80
81
82
83
84
{
"name": "@wearekickback/shared",
"version": "1.14.1",
"description": "Shared utils between client and server",
"main": "dist/index.js",
"module": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"lint": "eslint src",
"test": "jest --no-cache",
"test:coverage": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wearekickback/shared.git"
},
"keywords": [
"ethereum",
"value",
"formatting",
"decimal",
"bignumber",
"bn"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearekickback/shared/issues"
},
"homepage": "https://github.com/wearekickback/shared#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-jest-assertions": "^0.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^23.6.0"
},
"dependencies": {
"lodash.get": "^4.4.2",
"validator": "^10.8.0",
"web3-utils": "^1.0.0-beta.36"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
],
"collectCoverageFrom": [
"src/*.js"
],
"coverageDirectory": "<rootDir>/test-coverage",
"transform": {
"^.+\\.js$": "<rootDir>/.jest/transform.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/.jest/setupTestFrameworkScriptFile.js"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"add-module-exports"
]
},
"publishConfig": {
"access": "public"
}
}