-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.29 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
{
"private": true,
"name": "navy-monorepo",
"description": "This is a monorepo. Check packages/navy for the main navy package.",
"config": {
"mocha": "--require @babel/register packages/*/src/{,**}/__tests__/*.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "./scripts/build.sh",
"watch": "./scripts/watch.sh",
"integration": "./scripts/integration.sh",
"lint": "eslint .",
"flow": "flow",
"unit": "mocha $npm_package_config_mocha",
"unit-watch": "mocha -w $npm_package_config_mocha",
"test": "./scripts/test.sh",
"preinstall": "which npx >/dev/null 2>&1 && npx npm-force-resolutions || npm exec -- npm-force-resolutions",
"prepare": "npm run build",
"publish": "lerna publish",
"publish-rc": "NPM_DIST_TAG=next npm run publish",
"publish-website": "cd website && SITE_URL=https://moneyhub.github.io/navy npm run build && gh-pages -d build",
"bootstrap": "lerna bootstrap",
"updated": "lerna updated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moneyhub/navy.git"
},
"author": "Moneyhub Financial Technology Ltd",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/eslint-parser": "^7",
"@babel/plugin-proposal-function-bind": "7.14.5",
"@babel/plugin-transform-flow-strip-types": "^7",
"@babel/plugin-transform-runtime": "^7",
"@babel/preset-env": "^7",
"@babel/preset-typescript": "^7",
"@babel/register": "^7",
"@babel/runtime": "^7",
"@cucumber/cucumber": "^7",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.4",
"chai-like": "^1.1.1",
"chai-properties": "^1.4.0",
"chai-things": "^0.2.0",
"core-js": "^3",
"eslint": "^7",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-flowtype": "^6",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^5",
"eslint-plugin-standard": "^5",
"flow-bin": "^0.75.0",
"lerna": "^5.5.1",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"node-fetch": "^2.6.5",
"node-pty": "^0.9.0",
"regenerator-runtime": "0.13.9",
"rimraf": "^2.7.1",
"strip-ansi": "^3.0.1"
},
"resolutions": {},
"dependencies": {}
}