-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "@cloudcmd/clipboard",
"version": "2.0.0",
"main": "lib/clipboard.js",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "Clipboard API polyfill",
"repository": {
"type": "git",
"url": "git://github.com/cloudcmd/clipboard.git"
},
"scripts": {
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"watch:coverage": "madrun watch:coverage",
"watch:test": "madrun watch:test",
"watcher": "madrun watcher",
"test": "madrun test",
"coverage": "madrun coverage",
"report": "madrun report"
},
"nyc": {
"exclude": [
".*.js",
"test"
]
},
"devDependencies": {
"auto-globals": "^1.0.0",
"coveralls": "^3.0.1",
"eslint": "^7.14.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-putout": "^6.5.1",
"madrun": "^7.0.5",
"mock-require": "^3.0.2",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"putout": "^11.7.2",
"supertape": "^2.0.1",
"try-to-catch": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"dependencies": {},
"publishConfig": {
"access": "public"
}
}