-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.28 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.28 KB
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
{
"name": "@lirx/observable",
"version": "0.0.1",
"type": "module",
"main": "./index.js",
"scripts": {
"fb:build": "node fabrique/actions/build.js",
"fb:format": "prettier --write --ignore-unknown --config ./.prettierrc \"src/**/*.{js,jsx,ts,tsx,html,css,scss}\"",
"fb:test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"fb:test:coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --collect-coverage",
"fb:prod": "node fabrique/actions/build.js && cd dist && npm publish --access public --registry https://registry.npmjs.org",
"fb:dev": "node fabrique/actions/build.js --dev && cd dist && npm publish --quiet --registry http://localhost:4873"
},
"description": "Super fast and light library to play with Observables.",
"keywords": [],
"author": "Valentin RICHARD",
"license": "MIT",
"access": "public",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"packageManager": "yarn@4.4.1",
"fabrique": {
"version": "0.1.2",
"type": "lib"
},
"dependencies": {
"@lirx/utils": "latest"
}
}