-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "@alumna/reflect",
"version": "1.1.3",
"description": "Reflect the contents of one directory to another. At the speed of light.",
"exports": {
"import": "./dist/reflect.mjs",
"require": "./dist/reflect.cjs",
"default": "./dist/reflect.mjs"
},
"main": "dist/reflect.mjs",
"module": "dist/reflect.mjs",
"type": "module",
"scripts": {
"build": "rollup --config rollup/cjs.js && rollup --config rollup/es.js",
"prepare": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alumna/reflect.git"
},
"keywords": [
"reflect",
"mirror",
"sync",
"syncing",
"rsync",
"rsyncwrapper",
"copy",
"copying",
"directory",
"folder",
"content",
"files"
],
"author": "Paulo Coghi",
"license": "MIT",
"bugs": {
"url": "https://github.com/alumna/reflect/issues"
},
"homepage": "https://github.com/alumna/reflect",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**",
"!**/dist/**",
"!**/node_modules/**"
],
"verbose": true,
"testEnvironment": "node",
"transform": {}
},
"devDependencies": {
"jest": "^29.7.0",
"rollup": "^4.7.0",
"@rollup/plugin-terser": "^0.4.4"
}
}