-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.14 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
63
{
"name": "@danielx/observable",
"version": "0.7.0",
"author": "Daniel X. Moore",
"license": "MIT",
"scripts": {
"build": "bash build.sh",
"test": "c8 mocha"
},
"files": [
"dist/"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"description": "Fresh and intellegent observables",
"repository": "git://github.com/DanielXMoore/Observable.git",
"keywords": [
"observable"
],
"devDependencies": {
"@danielx/civet": "0.7.19",
"@types/mocha": "10.0.6",
"c8": "10.1.2",
"esbuild": "0.23.0",
"mocha": "10.6.0",
"typedoc": "0.26.3",
"typescript": "5.5.3"
},
"c8": {
"all": true,
"reporter": [
"lcov",
"text"
],
"extension": [
".civet"
],
"include": [
"source"
]
},
"mocha": {
"extension": [
"civet"
],
"require": [
"@danielx/civet/register"
],
"reporter": "dot",
"recursive": true,
"spec": [
"test"
]
}
}