-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "simple-custom-event",
"version": "1.0.1",
"description": "Simple custom event implementation, with polyfill",
"main": "./dist/simple-custom-event.js",
"types": "./dist/SimpleCustomEvent.d.ts",
"author": "Marcin Dobroszek <marcin@silversite.pl>",
"scripts": {
"dev": "webpack --mode development",
"dev:watch": "webpack --mode development --watch",
"build": "webpack -p",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"files": [
"dist"
],
"homepage": "https://github.com/cichy380/simple-custom-event#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cichy380/simple-custom-event.git"
},
"bugs": {
"url": "https://github.com/cichy380/simple-custom-event/issues"
},
"keywords": [
"event",
"custom-event",
"typescript"
],
"license": "MIT"
}