forked from lifaon74/events-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 862 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 862 Bytes
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.0.5",
"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": {
"browserify": "^15.2.0",
"http-server": "^0.10.0",
"mocha": "^3.4.2",
"selenium-webdriver": "^4.0.0-alpha.1",
"uglify-js": "^3.0.14"
}
}