-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.25 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
{
"name": "sdk",
"version": "1.0.0",
"description": "The JavaScript SDK for interacting with [TokenOS](https://developer.token.io/).",
"main": "",
"scripts": {
"postinstall": "npm-recursive-install --skip-root",
"predevSetup": "npm run removeLinks && concurrently 'npm:link:*'",
"devSetup": "concurrently 'npm:devSetup:*'",
"link:app": "cd app && npm link",
"link:core": "cd core && npm link",
"link:tpp": "cd tpp && npm link",
"removeLinks": "concurrently 'npm:unlink:*'",
"unlink:app": "npm unlink --no-save @token-io/app",
"unlink:core": "npm unlink --no-save @token-io/core",
"unlink:tpp": "npm unlink --no-save @token-io/tpp",
"devSetup:app": "cd app && npm link @token-io/core && npm link @token-io/tpp",
"devSetup:tpp": "cd tpp && npm link @token-io/core && npm link @token-io/app",
"build": "cd tpp && npm run build && cd ../app && npm run build && cd .."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tokenio/sdk-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tokenio/sdk-js/issues"
},
"homepage": "https://github.com/tokenio/sdk-js#readme",
"dependencies": {
"concurrently": "^5.3.0",
"recursive-install": "1.4.0"
}
}