This repository has been archived by the owner on Dec 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.55 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
{
"name": "@sprucelabs/mercury",
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"version": "10.5.72",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"description": "The simple way to interact with the Spruce Experience Platform",
"keywords": [
"node",
"components",
"sprucebot",
"sprucelabs"
],
"homepage": "https://github.com/sprucelabsai/workspace.sprucebot-skills-kit",
"bugs": {
"url": "https://github.com/sprucelabsai/workspace.sprucebot-skills-kit/issues"
},
"scripts": {
"#build": "npm run clean && npm run build.node && npm run build.umd",
"build": "npm run clean && npm run build.umd && npm run build.node",
"build.node": "tsc | true",
"build.browser": "tsc --project tsconfig.browser.json",
"build.umd": "rollup -c rollup.config.js && mkdir -p build/umd && cd build && sed s/index.js.map/mercury.js.map/ index.js > umd/mercury.js && mv index.js.map umd/mercury.js.map",
"watch": "chokidar 'src/**/*.(js|jsx|ts|tsx)' -c 'npm run build'",
"clean": "rm -rf build/",
"lint": "eslint '**/*.ts' && tsc -p . --noEmit",
"lint.fix": "eslint --fix '**/*.ts'",
"test": "mocha -r ts-node/register/transpile-only --exit 'tests/**/*Tests*'",
"release": "semantic-release",
"arkit": "arkit -f index.ts -o docs/images/arkit.svg",
"arkit.png": "arkit -f index.ts -o docs/images/arkit.png",
"upgrade.base": "yarn upgrade --latest && rm yarn.lock | true && yarn | true && yarn lint.fix || true",
"up": "yarn upgrade.base && yarn lint && yarn build && yarn test"
},
"dependencies": {
"debug": "^4.1.1",
"randombytes": "^2.1.0",
"socket.io-client": "^2.3.0",
"superagent": "^5.1.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"@sprucelabs/semantic-release": "^4.0.4",
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/faker": "^4.1.11",
"@types/mocha": "^8.0.0",
"@types/socket.io-client": "^1.4.32",
"add": "^2.0.6",
"arkit": "^1.6.4",
"chai": "^4.2.0",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.0.2",
"eslint": "^7.6.0",
"eslint-config-spruce": "^10.7.14",
"faker": "^4.1.0",
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-replace": "^2.2.0",
"ts-node": "^8.8.1",
"typescript": "^3.9.7"
}
}