forked from iotaledger/iota.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.59 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "iota-js",
"version": "1.0.0-alpha.1",
"description": "IOTA Client Reference Implementation",
"scripts": {
"init": "npm i && lerna bootstrap",
"test": "lerna exec -- npm test",
"test-ci": "lerna bootstrap && lerna exec -- npm run test-ci && npm run lint",
"test-android": "lerna bootstrap && lerna run test-android --stream",
"test-android-ci": "lerna bootstrap && lerna run test-android-ci --stream",
"test:staged": "node scripts/test-staged.js",
"lint": "tslint --project .",
"docs": "lerna run docs"
},
"contributors": [
"Dominik Schiener <[email protected]> (https://iota.org)",
"Edward Greve <[email protected]> (https://github.com/anyong)",
"Chris Dukakis <[email protected]> (https://github.com/chrisdukakis)"
],
"ava": {
"files": [
"packages/**/out/**/test/*.test.js",
"packages/**/out/**/test/integration/*.test.js"
],
"failFast": true,
"failWithoutAssertions": false,
"compileEnhancements": false,
"verbose": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && node ./scripts/test-staged.js",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"*.{ts}": [
"tslint --fix",
"git add"
],
"*.{js,ts,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"package-lock.json",
"packages/**/package-lock.json"
]
},
"keywords": [
"iota",
"tangle",
"library",
"javascript",
"nodejs",
"API"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iotaledger/iota.lib.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/iota.lib.js.git"
},
"dependencies": {
"@types/bluebird": "^3.5.25"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"ava": "^0.25.0",
"dmd-clear": "^0.1.2",
"husky": "^1.1.2",
"jsdoc-babel": "^0.5.0",
"lerna": "^3.4.3",
"lint-staged": "^8.0.4",
"nyc": "^13.1.0",
"prettier": "^1.10.2",
"staged-git-files": "^1.1.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"typescript": "^3.1.3"
}
}