-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "term-strings",
"version": "0.16.2",
"packageManager": "[email protected]+sha224.bc24d7f5afc738464f3d4e95f4e6e7829a35cee54a0fd527ea5baa83",
"license": "MIT",
"main": "build/core/index.js",
"types": "build/core/index.d.ts",
"exports": {
".": "./build/core/index.js",
"./gen": "./build/gen/index.js",
"./parse": "./build/parse/index.js",
"./package.json": "./package.json"
},
"bin": {
"term-strings": "./build/bin/term-strings.js",
"term-strings-seqdbg": "./build/bin/term-strings-seqdbg.js"
},
"scripts": {
"test": "mocha -r ts-node/register/transpile-only 'sources/**/*.test.*'",
"demo": "node -r ts-node/register/transpile-only -- sources/bin/term-strings style.color.front.red.in -r 'Red Text' style.color.front.out -r ' and ' style.color.front.green.in -r 'Green Text' style.color.front.out -r '\n'",
"prepack": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@types/zen-observable": "^0.8.3",
"color-diff": "^1.2.0",
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/register": "^7.16.5",
"@types/chai": "^4.3.0",
"@types/color-diff": "^1.2.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.1",
"@types/zen-observable": "^0.8.3",
"@yarnpkg/eslint-config": "^1.0.0",
"chai": "^4.3.4",
"eslint": "^8.57.0",
"mocha": "^8",
"ts-node": "^10.4.0",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"build"
]
}