This repository has been archived by the owner on Jun 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "lisk-elements-monorepo",
"private": true,
"version": "1.0.0",
"description": "Reusable packages for use with the Lisk ecosystem",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-elements#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-elements.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-elements/issues"
},
"engines": {
"node": ">=8.10 <=10",
"npm": ">=3 <=6"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"clean:node_modules": "lerna clean --yes",
"format": "npm run format:root && lerna run format",
"format:root": "prettier types/**/*.ts --write",
"lint": "npm run lint:root && lerna run lint",
"lint:fix": "npm run lint:root -- --fix && lerna run lint:fix",
"lint:root": "tslint -p tsconfig.json types/**/*.ts",
"test": "lerna run test",
"test:node": "lerna run test:node",
"test:browser": "lerna run test:browser",
"build": "lerna run build",
"build:browsertest": "lerna run build:browsertest",
"cover": "lerna run cover",
"init": "./scripts/init.sh",
"postinstall": "npm run bootstrap",
"precommit": "lint-staged && npm run lint",
"prepush": "npm run lint && npm test"
},
"devDependencies": {
"@types/node": "10.12.0",
"@types/sinon": "5.0.5",
"husky": "0.14.3",
"lerna": "3.4.1",
"lint-staged": "7.3.0",
"prettier": "1.14.2",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-immutable": "4.7.0",
"typescript": "3.1.1"
},
"dependencies": {}
}