-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "iov-monorepo-root",
"description": "IOV JavaScript packages",
"private": true,
"author": "IOV SAS <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/iov-one/iov-core",
"repository": {
"type": "git",
"url": "https://github.com/iov-one/iov-core.git"
},
"bugs": {
"url": "https://github.com/iov-one/iov-core/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"format": "lerna run format",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\" \"./docs/**/*.md\" \"./scripts/**/*.{json,md}\" && lerna run format-text",
"lint": "lerna run lint",
"lint-fix": "lerna exec 'eslint \"**/*.{js,ts}\" --fix'",
"test": "lerna run test",
"build": "lerna run build",
"docs": "lerna run docs",
"release": "lerna run build && lerna publish",
"clean": "rm -rf ./packages/*/docs/"
},
"devDependencies": {
"@types/jasmine": "^3.3.7",
"@types/memdown": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^4.0.0",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^5.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2",
"karma-jasmine-html-reporter": "^1.4",
"karma-safari-launcher": "^1.0.0",
"lerna": "^3.14.1",
"memdown": "^4.0.0",
"prettier": "^2",
"shx": "^0.3.2",
"source-map-support": "^0.5.6",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.13.0",
"tslint-immutable": "^5.5.2",
"typescript": "~3.7",
"webpack": "^4.12.0",
"webpack-cli": "^3.3.8"
}
}