-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
100 lines (100 loc) · 2.48 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
{
"name": "remote-lib-private",
"version": "0.1.0",
"description": "A private module for developing remote-lib packages.",
"keywords": [
"remote",
"library",
"lib",
"context",
"protocol",
"instance",
"bidi-map",
"environment",
"reference",
"proxy",
"es6",
"rpc",
"stream",
"serverless"
],
"homepage": "http://www.remotelib.com",
"bugs": "https://github.com/remotelib/remote-lib/issues",
"license": "Apache-2.0",
"author": "Moshe Simantov <[email protected]> (http://www.moshesimantov.com)",
"main": "packages/remote-lib",
"module": "packages/remote-lib",
"repository": {
"type": "git",
"url": "https://github.com/remotelib/remote-lib.git"
},
"scripts": {
"build": "make build",
"fix": "make fix",
"lint": "make lint",
"commitmsg": "validate-commit-msg",
"precommit": "lint-staged",
"prepush": "make prepush",
"test": "make test",
"package": "./scripts/npm-package.sh"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chalk": "^1.1.1",
"escape-string-regexp": "^1.0.5",
"esdoc": "^1.1.0",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-publish-markdown-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-notice": "^0.2.3",
"eslint-plugin-prettier": "^2.4.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.3",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lerna": "^2.5.1",
"lint-staged": "^4.3.0",
"mocha": "^3.5.3",
"npm-package-json-lint": "^2.11.1",
"prettier": "^1.9.2",
"through2": "^2.0.0",
"validate-commit-msg": "^2.14.0"
},
"engines": {
"node": ">=6.11"
},
"private": true,
"nyc": {
"all": true,
"exclude": [
"scripts/*.js",
"packages/*/test/**"
],
"sourceMap": false,
"instrument": false
},
"lint-staged": {
"*.js": [
"eslint --format=codeframe"
],
"*.json": [
"eslint --format=codeframe"
]
}
}