This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 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
75
76
77
{
"name": "obot",
"private": true,
"repository": "github:DrSensor/bot-byte",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@obot/cli": "file:packages/cli",
"@oclif/tslint": "^3.1.1",
"@rollup/log": "^0.1.0",
"@types/jest": "^24.0.0",
"@types/node": "^10.12.18",
"conventional-github-releaser": "^3.1.2",
"delete-empty": "^2.0.0",
"gh-pages": "^2.0.1",
"globby": "^9.0.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lerna": "^3.10.7",
"lint-staged": "^8.1.0",
"opn-cli": "^4.0.0",
"prettier": "^1.16.4",
"rollup": "^1.1.2",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-run": "github:DrSensor/rollup-plugin-run",
"rollup-plugin-typescript2": "^0.19.2",
"shelljs": "^0.8.3",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.1"
},
"license": "MIT",
"lint-staged": {
"linters": {
"*.ts": [
"tslint --fix -c tslint.json -p tsconfig.json"
]
},
"ignore": [
"examples/**"
]
},
"standard-version": {
"scripts": {
"postbump": "prettier package*.json --write",
"precommit": "git add CHANGELOG.md package*.json"
}
},
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "lerna exec -- rollup -c --silent",
"lint": "(tsc --pretty -p . --noemit || true) && tslint -p . --force",
"lint:fix": "tslint -p . --fix --force",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p . -t stylish",
"predocs": "typedoc packages/library/src",
"docs": "opn docs/index.html",
"prepublishOnly": "npm run build",
"release": "lerna version",
"start": "lerna exec --no-bail -- rollup -c --silent --watch",
"test": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='packages/*/src/**/*.ts' --coverage"
}
}