-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "logbook",
"version": "1.0.0",
"description": "Javascript logs made easy",
"main": "index.js",
"scripts": {
"test": "mocha -t 20000 --compilers js:@babel/register tests --exit",
"build": "rollup --config rollup.config.js --file lib/bundle.js",
"start": "node launcher"
},
"keywords": [
"javacript",
"logs",
"js",
"auditing",
"email"
],
"author": "gaurav sharma",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"rollup": "^0.68.0",
"rollup-plugin-node-resolve": "^4.0.0"
},
"dependencies": {
"socket.io": "^2.4.0"
}
}