-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "basol",
"version": "0.5.0",
"type": "module",
"description": "Basic Observable Library",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test",
"test:ci": "node --test --experimental-test-coverage --test-reporter=./test/lcov-reporter.js --test-reporter-destination=test-report-lcov.info",
"lcov": "cat test-report-lcov.info | coveralls",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint 'lib/**/*.js' 'test/**/*.js'",
"lint:ts": "rm -rf build && tsc && diff -ur types build/lib",
"lint:fix": "eslint 'lib/**/*.js' 'test/**/*.js' --fix",
"gen:types": "rm -rf build types && tsc && mv build/lib types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-luna/basol.git"
},
"keywords": [
"observable",
"utils",
"library",
"rxjs"
],
"author": "David Luna",
"license": "MIT",
"bugs": {
"url": "https://github.com/david-luna/basol/issues"
},
"homepage": "https://github.com/david-luna/basol#readme",
"devDependencies": {
"@types/node": "^20.10.0",
"coveralls": "^3.0.11",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.4.5"
}
}