-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
37
38
39
40
41
42
43
44
45
46
{
"name": "hey-yall",
"version": "1.0.1",
"description": "Basic event emitter",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"jest": "^24.7.1",
"rimraf": "^2.6.3"
},
"scripts": {
"build": "cross-env BABEL_ENV=production babel src --ignore '**/*.test.js' --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint src",
"test": "jest --config ./jest.config.json --coverage",
"test:watch": "jest --config ./jest.config.json --watch",
"test:watchAll": "jest --config ./jest.config.json --watchAll",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmurret/hey-yall.git"
},
"keywords": [
"event",
"emitter",
"event-emitter"
],
"files": [
"lib",
"src"
],
"author": "John Murret <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmurret/hey-yall/issues"
},
"homepage": "https://github.com/jmurret/hey-yall#readme"
}