-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "@jdeighan/coffee-utils",
"type": "module",
"version": "17.0.11",
"description": "A set of utility functions for CoffeeScript",
"main": "coffee_utils.js",
"exports": {
".": "./src/lib/fs.js",
"./fs": "./src/lib/fs.js",
"./block": "./src/lib/block.js",
"./html": "./src/lib/html.js",
"./section": "./src/lib/Section.js",
"./sectionmap": "./src/lib/SectionMap.js",
"./keyedset": "./src/lib/KeyedSet.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=12.0.0"
},
"ava": {
"verbose": false
},
"scripts": {
"build": "cls && coffee -cm .",
"test": "npm run build && npx ava ./test/*.test.js && git status"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johndeighan/coffee-utils.git"
},
"keywords": [
"coffeescript"
],
"author": "John Deighan",
"license": "MIT",
"bugs": {
"url": "https://github.com/johndeighan/coffee-utils/issues"
},
"homepage": "https://github.com/johndeighan/coffee-utils#readme",
"dependencies": {
"@jdeighan/base-utils": "^15.0.7",
"cross-env": "^7.0.3",
"n-readlines": "^1.0.1",
"readline-sync": "^1.4.10",
"svelte": "^4.2.12"
}
}