forked from frankdsm/node-sip2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 828 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 828 Bytes
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
{
"name": "sip2",
"version": "0.3.0",
"description": "SIP2 communication for Node.js",
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint **/*.js",
"test": "npm run lint && NODE_ENV=test ./node_modules/.bin/istanbul cover --dir ./coverage ./node_modules/.bin/_mocha -- -R spec -t 15000 --recursive --slow 2"
},
"repository": {
"type": "git",
"url": "https://github.com/Dootrix/node-sip2"
},
"author": "",
"license": "ISC",
"dependencies": {
"dateformat": "~2.0.0"
},
"devDependencies": {
"eslint": "~3.19.0",
"eslint-config-airbnb": "~14.1.0",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~4.0.0",
"eslint-plugin-react": "~6.10.3",
"istanbul": "~0.4.5",
"mocha": "~3.3.0"
}
}