-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "clickclack",
"version": "0.5.0",
"description": "Monitor HTMLElement activity and fire events when transitioning from idle to active.",
"main": "dist/index.js",
"scripts": {
"lint:js": "eslint ./src --ext 'js'",
"test": "NODE_PATH=./src BABEL_ENV=test mocha --opts ./mocha.opts",
"test:watch": "NODE_PATH=./src BABEL_ENV=test mocha --opts ./mocha.opts --reporter min --watch",
"build": "webpack -d --display-error-details --config webpack.config.js",
"build:watch": "webpack -d --display-error-details --config webpack.config.js --watch",
"release": "node_modules/.bin/babel src/clickclack.js -o dist/index.js",
"ghpages": "webpack -d --display-error-details --config webpack.config.js && cp example/bundle.js docs/assets/js/",
"pre-publish": "npm test && npm run release && npm run ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icodejs/clickclack.git"
},
"files": [
"dist/index.js"
],
"keywords": [
"input",
"textbox",
"textarea",
"idle",
"active",
"monitor",
"keyboard",
"HTMLElement",
"EventEmitter",
"pub-sub",
"interact",
"events",
"docuevid"
],
"author": "icodejs",
"license": "MIT",
"bugs": {
"url": "https://github.com/icodejs/clickclack/issues"
},
"homepage": "https://icodejs.github.io/clickclack/",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.12.2",
"eslint-plugin-mocha": "^4.7.0",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^1.14.0"
},
"dependencies": {
"combokeys": "^2.4.6",
"lodash.throttle": "^4.1.1"
}
}