-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "triggerhappy",
"version": "1.2.0",
"description": "Easily create native events for testing purposes Edit",
"keywords": [
"mock",
"fake",
"events",
"touch",
"mouse",
"test",
"javascript"
],
"main": "lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"clean": "node_modules/.bin/rimraf ./lib",
"build:lib": "node_modules/.bin/babel src/ -d lib/",
"build": "npm run lint && npm run clean && npm run build:lib && npm run demo:build",
"lint": "node_modules/.bin/eslint src/",
"test": "NODE_ENV=production node_modules/.bin/karma start test/karma.conf.js",
"test:watch": "NODE_ENV=development node_modules/.bin/karma start test/karma.conf.js",
"demo:watch": "webpack-dev-server --inline --config ./webpack.config.js --content-base docs --port 3050 --host 0.0.0.0",
"demo:build": "NODE_ENV=production node_modules/.bin/webpack --config ./webpack.config.js",
"prepublish": "npm run lint && npm run build"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.2",
"babel-loader": "~6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-3": "^6.17.0",
"chai": "^3.2.0",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.16",
"css-loader": "^0.26.1",
"eslint": "3.15.0",
"eslint-config-airbnb-base": "11.1.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "2.2.0",
"flow-bin": "^0.48.0",
"istanbul": "~0.3.17",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-eslint": "^2.2.0",
"karma-firefox-launcher": "^1.0.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sinon": "1.0.5",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.0",
"mocha": "^2.2.5",
"panjs": "^0.6.5",
"pinchit": "^0.6.2",
"prismjs": "^1.6.0",
"sinon": "^2.3.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"unminified-webpack-plugin": "^1.2.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"author": {
"name": "Philip Knape",
"email": "[email protected]",
"url": "https://philipknape.me"
},
"bugs": {
"url": "https://github.com/Knape/triggerhappy/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/Knape/triggerhappy/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Knape/triggerhappy.git"
},
"license": "MIT",
"dependencies": {
"global": "^4.3.1",
"keycode": "^2.1.8"
}
}