-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "key-emitter",
"version": "1.4.1",
"description": "minor snippet to react to key stroke",
"main": "lib/key-emitter.cjs.js",
"module": "lib/key-emitter.es.js",
"scripts": {
"build": "rimraf lib && rollup -c --environment INCLUDE_DEPS,BUILD:production",
"test": "jest"
},
"author": "ryuyutyo <liuyouchao111@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^21.2.1",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.52.1",
"rollup-multiple-entries": "^1.1.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"ts-jest": "^21.2.4",
"typescript": "^2.6.2"
},
"dependencies": {
"emitter-helper": "^1.1.0"
},
"files": [
"README.md",
"lib",
"src",
"index.js"
],
"repository": "https://github.com/ryuever/key-emitter.git"
}