-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "@hello10/logger",
"version": "0.0.8",
"description": "Logger",
"main": "dist/index.js",
"source": "src/index.js",
"repository": "[email protected]:Hello10/logger.git",
"license": "MIT",
"author": {
"name": "Stephen Handley",
"email": "[email protected]",
"url": "https://hello10.com"
},
"scripts": {
"build": "microbundle --target node",
"clean": "rm -rf node_modules && rm -rf dist && rm -f yarn.lock",
"dev": "microbundle watch --target node",
"example": "LOGGER='foo:bar*|error,ping:pong|info,-ping:pong:pork' babel-node ./example.js",
"lint": "yarn eslint ./src",
"test": "yarn nyc mocha --ui bdd test.js"
},
"devDependencies": {
"@babel/node": "7.10.4",
"@hello10/eslint-config": "1.0.2",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-promise": "4.2.1",
"microbundle": "0.12.0",
"mocha": "7.1.1",
"nyc": "15.0.1",
"parcel-bundler": "1.12.4",
"sinon": "9.0.2"
}
}