-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1.18 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
{
"name": "remote-function",
"version": "1.0.1",
"description": "Make function calls remotely in an intuitive way.",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- test/**/*",
"coveralls": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "node server.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lindell/remote-function.git"
},
"author": "Johan Lindell",
"homepage": "https://github.com/lindell/remote-function",
"license": "MIT",
"devDependencies": {
"axios": "^0.21.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"deep-equal": "^1.1.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"express": "^4.17.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^8.2.0"
}
}