-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "@valudio/clipboard",
"version": "1.0.1",
"description": "Node addon that will allow you to use some Windows Clipboard methods.",
"main": "dist/index.js",
"typings": "dist/index.js",
"gypfile": true,
"scripts": {
"build": "npm run build:cpp && npm run build:ts",
"build:cpp": "rimraf build && npm run gyp",
"build:ts": "rimraf dist && npm run lint && npm run tsc",
"gyp": "node-gyp configure build",
"tsc": "tsc -p tsconfig.json",
"clean": "rimraf build dist",
"lint": "tslint -c ./tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm run build && npm run test",
"test": "jest --coverage --forceExit",
"version": "npm run build",
"postversion": "npm publish --access=public",
"rls": "npm --no-git-tag-version version",
"rls:patch": "npm run rls -- patch",
"rls:minor": "npm run rls -- minor",
"rls:major": "npm run rls -- major"
},
"keywords": [
"clipboard",
"text",
"selection",
"windows"
],
"author": " Valudio <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/valudio/clipboard"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.6.2"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"@types/node": "^8.0.11",
"jest": "^20.0.4",
"node-gyp": "^3.6.2",
"rimraf": "^2.6.1",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
},
"jest": {
"verbose": true,
"bail": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/typings/",
"/helpers/"
]
}
}