-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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": "@alumna/unitflow",
"version": "1.0.3",
"description": "Organize your library or project, defining flows composable by a sequence of units",
"exports": {
"import": "./dist/unitflow.mjs",
"require": "./dist/unitflow.cjs",
"default": "./dist/unitflow.mjs"
},
"main": "dist/unitflow.cjs",
"module": "dist/unitflow.mjs",
"type": "module",
"scripts": {
"build": "rollup --config rollup/cjs.js && rollup --config rollup/es.js",
"prepare": "rollup --config rollup/cjs.js && rollup --config rollup/es.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alumna/unitflow.git"
},
"author": "Paulo Coghi",
"license": "MIT",
"bugs": {
"url": "https://github.com/alumna/unitflow/issues"
},
"homepage": "https://github.com/alumna/unitflow#readme",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**",
"!**/dist/**",
"!**/rollup/**",
"!**/node_modules/**"
],
"verbose": true,
"testEnvironment": "node",
"transform": {}
},
"devDependencies": {
"jest": "^29.7.0",
"rollup": "^4.9.5",
"@rollup/plugin-terser": "^0.4.4"
}
}