This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.64 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
55
56
57
58
59
60
61
{
"name": "keysim",
"version": "0.0.0-development",
"description": "Keyboard simulator for JavaScript.",
"main": "dist/keysim.js",
"module": "dist/keysim.mjs",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/eventualbuddha/keysim.js.git"
},
"scripts": {
"lint": "eslint src test && prettier-check src/**/*.js test/**/*.js",
"prebuild": "npm run lint",
"build": "rollup -c",
"pretest": "npm run build",
"test": "npm run test:node && npm run test:browser",
"test:browser": "./node_modules/karma/bin/karma start karma.conf.js",
"test:node": "mocha",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"keyboard",
"event",
"dom",
"KeyboardEvent",
"simulate"
],
"author": "Brian Donovan",
"license": "MIT",
"devDependencies": {
"add-event-handler": "^1.0.3",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-syntax-class-properties": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-preset-env": "^1.6.1",
"browserify": "^16.2.0",
"detect-node": "^2.0.3",
"dom-element-is-natively-editable": "^1.0.4",
"eslint": "^4.19.1",
"jsdom": "^11.9.0",
"karma": "^4.1.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.1.1",
"prettier": "^1.12.1",
"prettier-check": "^2.0.0",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"watchify": "^3.11.1"
}
}