-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "clipbrd",
"version": "1.0.3",
"description": "Lightweight copy to clipboard for modern browsers",
"main": "dist/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"module": "./src/index.js",
"default": "./dist/index.js"
}
},
"files": [
"/src/",
"/dist/",
"/types/"
],
"scripts": {
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.js",
"bundle:min": "rollup -c build/rollup.uglify.config.js",
"lint": "eslint --ext .js ./src ./test",
"lint:fix": "eslint --ext .js ./src ./test --fix",
"test": "npm run bundle && npm run lint && jest",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrpne/clipbrd.git"
},
"keywords": [
"clipboard",
"copy",
"support",
"browser"
],
"author": "shrpne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shrpne/clipbrd/issues"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"puppeteer": "^1.10.0",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-terser": "^3.0.0"
}
}