-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "aegle",
"version": "0.0.0",
"description": "Data formats and protocols over Swarm",
"repository": "[email protected]:MainframeHQ/aegle.git",
"main": "index.js",
"author": "Mainframe",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"scripts": {
"clean": "lerna clean -y && del-cli ./node_modules",
"lint": "eslint 'packages/*/src/**.ts' '__tests__/**.ts'",
"lint:fix": "yarn lint --fix",
"test": "BABEL_ENV=test jest --config jest.config.js",
"test:ci": "BABEL_ENV=test jest --ci --config jest.config.ci.js",
"test:all": "yarn lint && yarn test",
"build": "lerna run build",
"start": "yarn build && yarn test:all"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^24.9.0",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-mainframe": "^4.0.1",
"get-stream": "^5.1.0",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
}
}