This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 2.24 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
{
"name": "pendulum-sdk",
"version": "1.0.0-alpha.8",
"description": "Pendulum SDK based on iota.js",
"scripts": {
"init": "npm i && lerna bootstrap",
"test": "lerna run test --stream",
"test-ci": "lerna bootstrap && lerna run test-ci --stream",
"format": "prettier",
"docs": "lerna run docs",
"testapi": " mocha -r ts-node/register test/**/*.test.ts"
},
"contributors": [
"Dominik Schiener <[email protected]> (https://iota.org)",
"Edward Greve <[email protected]> (https://github.com/anyong)",
"Chris Dukakis <[email protected]> (https://github.com/chrisdukakis)",
"Sachu Shaji Abraham <[email protected]> (https://github.com/sachushaji)",
"Oliver Fohrmann <[email protected]> (https://github.com/oliverfn)",
"Frauke Sophie Abben <[email protected]> (https://github.com/fsbbn)",
"Cristina Vasiu <[email protected]> (https://github.com/cristina_vasiu)",
"Adrian Tocu <[email protected]> (https://github.com/adrian_tocu)"
],
"ava": {
"files": [
"packages/**/out/**/test/*.test.js",
"packages/**/out/**/test/integration/*.test.js"
],
"failFast": true,
"failWithoutAssertions": false,
"compileEnhancements": false,
"verbose": true
},
"lint-staged": {
"*.{js,json}": ["prettier --write", "git add"],
"*.ts": ["prettier --write", "tslint .", "git add"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"helix",
"pendulum",
"timestamp",
"p2p",
"messaging",
"tangle",
"library",
"javascript",
"nodejs",
"API"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/HelixNetwork/pendulum-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HelixNetwork/pendulum-sdk.git"
},
"dependencies": {
"@types/bluebird": "^3.5.20",
"@types/request": "^2.47.1",
"babel-preset-env": "^1.7.0",
"request": "^2.88.0",
"ts-node": "^7.0.1"
},
"devDependencies": {
"ava": "^1.2.1",
"dmd-clear": "^0.1.2",
"husky": "^3.0.9",
"jsdoc-babel": "^0.4.0",
"lerna": "^3.15.0",
"lint-staged": "^9.4.2",
"nyc": "^14.1.1",
"prettier": "^1.10.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.2.1"
}
}