forked from blakeembrey/simulate-event
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.92 KB
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
62
63
64
65
66
67
68
69
70
71
{
"name": "simulate-event",
"version": "1.4.1",
"description": "A library for triggering DOM events.",
"main": "simulate-event.js",
"typings": "simulate-event.d.ts",
"files": [
"simulate-event.js",
"simulate-event.d.ts"
],
"scripts": {
"build": "grunt build",
"dev": "grunt watch:build & karma start",
"lint": "standard",
"test:debug": "npm run build && karma start --browsers=Firefox --singleRun=false --debug=true",
"test:chrome": "npm run build && karma start --browsers=Chrome",
"test:ie": "npm run build && karma start --browsers=IE",
"test": "npm run build && npm run lint && karma start --browsers=Firefox"
},
"standard": {
"ignore": [
"dist/",
"node_modules/",
"coverage/"
]
},
"repository": "https://github.com/blakeembrey/simulate-event",
"keywords": [
"simulate",
"event",
"dom",
"mouse",
"keyboard"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"devDependencies": {
"browserify": "^3.18.0",
"grunt": "^0.4.2",
"grunt-browserify": "^1.3.0",
"grunt-cli": "^0.1.11",
"grunt-contrib-jshint": "^0.8.0",
"grunt-contrib-uglify": "^0.2.7",
"grunt-contrib-watch": "^0.5.3",
"grunt-karma": "^0.10.1",
"grunt-newer": "^0.6.0",
"karma": "^0.12.37",
"karma-chrome-launcher": "^0.1.2",
"karma-coffee-preprocessor": "^0.1.2",
"karma-coverage": "^0.1.4",
"karma-firefox-launcher": "^0.1.3",
"karma-html2js-preprocessor": "^0.1.0",
"karma-ie-launcher": "^0.2.0",
"karma-jasmine": "^0.1.5",
"karma-mocha": "^0.1.1",
"karma-requirejs": "^0.2.1",
"karma-script-launcher": "^0.1.0",
"karma-sinon-chai": "^0.1.4",
"load-grunt-tasks": "^0.2.1",
"mocha": "^1.16.2",
"requirejs": "^2.1.9",
"standard": "^7.0.1",
"uglifyify": "^1.0.1"
},
"dependencies": {
}
}