-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "@lvchengbin/event-emitter",
"version": "1.0.2",
"description": "An Event Emitter for browsers",
"keywords": "event emitter trigger",
"repository": {
"type": "git",
"url": "git@github.com:LvChengbin/event-emitter.git"
},
"devDependencies": {
"eslint": "^6.8.0",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^3.1.1",
"karma-rollup-preprocessor": "^7.0.5",
"optimist": "^0.6.1",
"pre-commit": "^1.2.2",
"puppeteer": "^2.1.1",
"rollup": "^2.3.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-node-resolve": "^5.2.0",
"run-sequence": "^2.2.1"
},
"scripts": {
"build": "rollup -c",
"test": "karma start",
"prepublish": "npm run build",
"lint": "eslint ./ --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"main": "dist/event-emitter.cjs.js",
"jsnext:main": "src/event-emitter.js",
"author": "LvChengbin",
"license": "MIT",
"dependencies": {
"@lvchengbin/is": "0.0.27"
}
}