-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·111 lines (111 loc) · 3.41 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "peerio-icebear",
"version": "3.1.1",
"description": "Peerio Icebear client library",
"main": "dist/index.js",
"scripts": {
"build": "babel -q src -d dist",
"=== HOOKS ===": "",
"postcheckout": "npm run opt-in-npm-install",
"postmerge": "npm run opt-in-npm-install",
"precommit": "opt --in lint --exec \"npm run code:verify\"",
"=== TESTS ===": "",
"mocha": "mocha test/**/*.test.js --require babel-register --require test/unit/unit-global-setup --timeout 15000",
"test": "nyc --reporter=text --reporter=html npm run mocha",
"e2e": "cucumber.js test/e2e/contacts/stories --r test/e2e/e2e-global-setup.js -r test/e2e/contacts/supportCode -r test/e2e/account/supportCode --compiler js:babel-register",
"=== VALIDATION ===": "",
"code:lint": "eslint . --fix --ext .js",
"code:verify": "eslint . --ext .js --max-warnings 0",
"=== RELEASE ===": "",
"release": "./scripts/release.sh",
"=== UTILS ===": "",
"opt-in-npm-install": "opt --in npm-install --exec \"node ./scripts/npm_install_if_changed.js\""
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PeerioTechnologies/peerio-icebear.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PeerioTechnologies/peerio-icebear/issues"
},
"homepage": "https://github.com/PeerioTechnologies/peerio-icebear#readme",
"dependencies": {
"blake2s-js": "1.2.2",
"bluebird": "3.5.1",
"buffer": "5.0.8",
"eventemitter3": "2.0.3",
"lodash": "4.17.4",
"mobx": "3.3.1",
"moment": "2.19.1",
"peerio-translator": "github:PeerioTechnologies/peerio-translator#v1.0.0",
"scrypt-async": "1.3.1",
"socket.io-client": "2.0.4",
"tweetnacl": "1.0.0",
"url-regex": "4.1.1"
},
"devDependencies": {
"@types/bluebird-global": "3.5.3",
"@types/node": "8.0.47",
"babel-cli": "6.26.0",
"babel-eslint": "8.0.1",
"babel-plugin-console-kungfu": "github:PeerioTechnologies/babel-plugin-console-kungfu#v1.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-register": "6.26.0",
"babel-root-import": "4.1.8",
"babel-types": "6.26.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"cucumber": "3.1.0",
"cz-conventional-changelog": "2.1.0",
"eslint-config-peerio": "1.20.0",
"husky": "0.14.3",
"mocha": "4.0.1",
"npm-run-all": "4.1.1",
"nyc": "11.2.1",
"opt-cli": "1.6.0",
"standard-version": "4.2.0",
"validate-commit-msg": "2.14.0",
"w3c-xmlhttprequest": "2.1.2",
"websocket": "1.0.25"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 120,
"subjectPattern": ".+",
"helpMessage": "Convention: https://goo.gl/3TgTsh"
}
},
"standard-version": {
"scripts": {
"postbump": "node ./scripts/postbump.js"
}
},
"devEngines": {
"node": "8.x",
"npm": "5.x"
}
}