-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.95 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
{
"name": "bml",
"version": "0.1.10",
"description": "A stochastic markup language",
"author": {
"name": "Andrew Yoon",
"email": "[email protected]",
"url": "https://andrewyoon.art"
},
"man": "./man/bml.1",
"repository": {
"type": "git",
"url": "https://github.com/ajyoon/bml"
},
"bugs": {
"url": "https://github.com/ajyoon/bml/issues"
},
"source": "src/bml.ts",
"main": "dist/index.js",
"bundle": "dist/bml.bundle.js",
"cli": "dist/cli.js",
"targets": {
"main": {
"optimize": true
},
"bundle": {
"source": "src/browserIndex.js",
"optimize": true,
"outputFormat": "global",
"context": "browser",
"isLibrary": false
},
"cli": {
"source": "src/cli.ts",
"optimize": true,
"sourceMap": false,
"context": "node",
"isLibrary": false
}
},
"bin": {
"bml": "dist/cli.js"
},
"scripts": {
"test": "jest",
"releaseTest": "node test/releaseTest.js",
"checkTypes": "./node_modules/.bin/tsc --noEmit",
"buildOnly": "./node_modules/.bin/parcel build",
"buildDebug": "./node_modules/.bin/parcel build --no-optimize",
"build": "npm run checkTypes && npm run buildOnly && npm run releaseTest",
"preversion": "npm test",
"version": "npm run build"
},
"devDependencies": {
"@parcel/transformer-typescript-types": "^2.0.1",
"@swc/core": "^1.2.119",
"@swc/jest": "^0.2.14",
"@types/blessed": "^0.1.19",
"@types/jest": "^27.0.3",
"@types/node": "^18.11.18",
"@types/sha.js": "^2.4.0",
"@types/tmp": "^0.2.3",
"@types/indefinite": "2.3.1",
"jest": "^27.4.4",
"parcel": "^2.0.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"sha.js": "2.4.11",
"tmp": "^0.2.1",
"typescript": "^4.5.4"
},
"dependencies": {
"blessed": "^0.1.81",
"clipboardy": "^2.3.0",
"seedrandom": "2.4.4",
"indefinite": "2.4.2"
},
"license": "BSD-3-Clause"
}