-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
27 lines (27 loc) · 869 Bytes
/
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
{
"name": "events-polyfill",
"version": "2.1.2",
"description": "Polyfill event : EventListener, EventTarget, Event, CustomEvent, MouseEvent, KeyboardEvent, FocusEvent, PointerEvent and add support for options (like 'once')",
"main": "index.js",
"scripts": {
"start": "npm run build.min",
"build": "browserify ./src/index.js -o index.js",
"build.min": "npm run build && npm run min",
"min": "uglifyjs index.js --stats -m -o index.min.js",
"test": "node ./tests/test.js",
"serve": "http-server ./"
},
"repository": {
"type": "git",
"url": "https://github.com/lifaon74/events-polyfill"
},
"author": "valentin",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.12.18",
"browserify": "^16.2.3",
"http-server": "latest",
"selenium-webdriver": "^4.0.0-alpha.1",
"uglify-js": "latest"
}
}