-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 884 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
{
"name": "@devinle/sonar",
"version": "1.0.24",
"description": "A lightweight PubSub utility",
"main": "dist/sonar.js",
"repository": "https://github.com/devinle/sonar.git",
"author": "Devin Leggett",
"license": "MIT",
"scripts": {
"lint": "eslint ./src --fix",
"build": "webpack",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.3.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"babel-jest": "^24.3.1",
"path": "^0.12.7"
},
"bugs": {
"url": "https://github.com/devinle/sonar/issues"
},
"homepage": "https://github.com/devinle/sonar#readme",
"directories": {
"test": "tests"
}
}