-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "@mattkrick/event-source-polyfill",
"version": "0.1.0",
"description": "A minimum immplementation of EventSource for IE11 and Edge",
"author": "Matt Krick <matt.krick@gmail.com>",
"main": "dist/index.js",
"keywords": [
"event",
"source",
"SSE",
"eventsource",
"polyfill"
],
"repository": {
"type": "git",
"url": "/~https://github.com/mattkrick/event-source-polyfill"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"docs:build": "typedoc --out docs --target es6 --mode file --ignoreCompilerErrors --hideGenerator src",
"docs:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"lint": "yarn prettier && yarn standard",
"precommit": "lint-staged",
"prepublish": "yarn build",
"prettier": "prettier --write --loglevel warn ./**/*.ts",
"standard": "tslint -c tslint.json --project tsconfig.json --fix ./**/*.ts",
"watch": "webpack --config webpack.config.js -w"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.0",
"clean-webpack-plugin": "^0.1.19",
"gh-pages": "^1.2.0",
"husky": "^0.14.0",
"lint-staged": "^7.1.3",
"prettier": "^1.13.4",
"strict-event-emitter-types": "^1.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-config-standard": "^7.1.0",
"typedoc": "^0.11.0",
"typescript": "^3.0.1",
"webpack": "4.16.1",
"webpack-cli": "^3.1.0"
},
"typings": "dist/types/index.d.ts",
"license": "MIT"
}