-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "rxclipboard",
"version": "1.0.2",
"description": "Clipboard reactive to changes for Node",
"main": "./lib/index.js",
"scripts": {
"prebuild": "rm -rf lib",
"build": "npx babel src --out-dir lib",
"clean": "npm run clean:dist && npm run clean:reports && npm run clean:coverage",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"package.json",
"LICENSE",
"README.md"
],
"dependencies": {
"copy-paste": "^1.3.0",
"rxjs": "^5.5.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliandavidmr/RxClipboard.git"
},
"author": "Julian David <juliandavidmr> (https://github.com/juliandavidmr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliandavidmr/RxClipboard/issues"
},
"homepage": "https://github.com/juliandavidmr/RxClipboard#readme",
"engines": {
"node": ">= 6"
},
"keywords": [
"xclip",
"clipboard",
"rxjs",
"node"
]
}