-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 2.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@osjs/event-emitter",
"version": "1.0.10",
"description": "A simple event emitter",
"main": "dist/main.js",
"typings": "index.d.ts",
"files": [
"dist/",
"index.d.ts"
],
"scripts": {
"test": "npm run eslint && npm run jest",
"jest": "jest",
"coverage": "jest --coverage",
"eslint": "eslint index.js",
"build": "webpack",
"watch": "webpack --watch",
"prepublishOnly": "npm run test && NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/os-js/osjs-event-emitter.git"
},
"keywords": [
"osjs"
],
"dependencies": {},
"author": "Anders Evenrud <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/os-js/osjs-event-emitter/issues"
},
"homepage": "https://github.com/os-js/osjs-event-emitter#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@osjs/eslint-config": "^2.0.1",
"babel-loader": "^8.2.1",
"eslint": "^7.14.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "@osjs/eslint-config"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"esdoc": {
"source": "./",
"destination": "./doc",
"excludes": [
"(node_modules|doc|test)"
],
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"title": "OS.js EventEmitter API",
"description": "OS.js EventEmitter API Documentation",
"repository": "https://github.com/os-js/osjs-event-emitter",
"author": "Anders Evenrud <[email protected]>"
},
"lint": {
"enable": false
},
"coverage": {
"enable": false
},
"undocumentIdentifier": {
"enable": false
}
}
},
{
"name": "esdoc-publish-html-plugin"
}
]
}
}