-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.4 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
{
"name": "@atomixdesign/nodepay",
"description": "A payment gateway abstraction layer written in Typescript, taking inspiration from Omnipay & Active Merchant",
"private": true,
"author": {
"name": "Atomix",
"url": "https://www.atomix.com.au"
},
"contributors": [
{
"name": "Jack Hillman"
},
{
"name": "Mauro Colella",
"url": "https://mauro-colella.com"
}
],
"bugs": {
"url": "https://github.com/atomixdesign/nodepay/issues"
},
"homepage": "https://github.com/atomixdesign/nodepay",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --no-bail",
"test": "lerna run test --stream",
"reset": "concurrently \"yarn --silent clean:deps\" \"yarn --silent clean:build\" \"yarn --silent clean:artifacts\"",
"clean:deps": "shx rm -rf node_modules packages/**/node_modules",
"clean:artifacts": "shx rm -rf packages/**/coverage packages/**/docs",
"clean:build": "shx rm -rf packages/nodepay-**/build packages/**/tsconfig.tsbuildinfo",
"clean": "concurrently \"yarn clean:build\" \"yarn clean:artifacts\"",
"cli": "node utils/nodepay-cli",
"docs": "node utils/doc-gen && yarn clean:artifacts",
"docs:prebuild": "lerna run build:docs --no-bail",
"docs:init": "docsify init ./docs",
"lint": "lerna run lint",
"prepublishLocal": "yarn clean && yarn build && yarn test && yarn lint",
"publish:dev": "yarn prepublishLocal && lerna publish --registry http://localhost:4873"
},
"devDependencies": {
"@atomixdesign/eslint-config": "^1.0.3",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.11.7",
"@types/yargs": "^16.0.0",
"concurrently": "^5.3.0",
"console-stamp": "^3.0.0-rc4.2",
"docsify-cli": "^4.4.1",
"eslint": "^7.10.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^27.0.0",
"glob": "^7.1.6",
"jest": "^26.5.2",
"lerna": "^3.22.1",
"mkdirp": "^1.0.4",
"mustache": "^4.0.1",
"ncp": "^2.0.0",
"shx": "^0.3.2",
"typedoc": "^0.20.20",
"typedoc-plugin-markdown": "^3.0.7",
"typescript": "^4.1.3",
"yargs": "^16.0.3"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}