-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@danielx/system",
"version": "0.5.3",
"description": "System library for whimsy.space and danielx.net apps",
"main": "dist/main.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "coffee build/main.coffee",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielXMoore/system.git"
},
"keywords": [
"whimsy.space"
],
"author": "",
"license": "SEE LICENSE IN 💖",
"bugs": {
"url": "https://github.com/DanielXMoore/system/issues"
},
"homepage": "https://github.com/DanielXMoore/system#readme",
"devDependencies": {
"@danielx/civet": "^0.5.92",
"@danielx/coffeecoverage": "^4.0.0-pre.3",
"@danielx/hera": "^0.7.3-pre.3",
"@types/coffeescript": "^2.5.1",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.0",
"@types/stylus": "^0.48.37",
"coffeescript": "^2.6.1",
"css.escape": "^1.5.1",
"esbuild": "^0.14.36",
"esbuild-coffeescript": "^2.0.0",
"jadelet": "^2.0.0-pre.4",
"jsdom": "^19.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"stylus": "^0.57.0",
"typescript": "^4.6.3"
},
"mocha": {
"extension": [
"coffee"
],
"require": [
"coffeescript/register",
"@danielx/coffeecoverage/register-istanbul",
"@danielx/hera/register",
"jadelet/register",
"./test/helper.coffee"
],
"reporter": "spec",
"recursive": true,
"spec": [
"test",
"source/**/test/**/*"
]
},
"nyc": {
"check-coverage": false,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"lcov",
"text"
],
"extension": [
".coffee"
],
"exclude": [
"build/",
"source/**/test/*",
"node_modules/"
],
"sourceMap": false,
"instrument": false
}
}