-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
60
61
62
{
"name": "csset",
"version": "0.1.0",
"description": "experiment to perform algebra of sets with css",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18"
},
"files": [
"lib",
"types"
],
"scripts": {
"dev": "node --test --watch",
"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",
"docs": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-luna/csset.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"css",
"sets",
"algebra",
"experiment"
],
"author": "David Luna",
"license": "MIT",
"bugs": {
"url": "https://github.com/david-luna/csset/issues"
},
"homepage": "https://github.com/david-luna/csset#readme",
"devDependencies": {
"@types/node": "^20.12.12",
"coveralls": "^3.0.11",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"typescript": "^5.4.5",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}