-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.7 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
{
"name": "term-schemes",
"version": "1.2.1",
"description": "Parse and normalize common terminal emulator color schemes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start": "npx jest --watch",
"build": "npx tsc",
"test": "npx jest"
},
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testRegex": "src/(.*)\\.test\\.(ts|js)$",
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"author": "Mario Nebl <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/marionebl/term-schemes.git"
},
"bugs": {
"url": "https://github.com/marionebl/term-schemes/issues"
},
"license": "MIT",
"devDependencies": {
"@types/color": "^2.0.0",
"@types/require-from-string": "^1.2.0",
"globby": "^6.1.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"pkg-dir": "^2.0.0",
"prettier": "^1.8.2",
"ts-jest": "^21.2.1",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.1"
},
"dependencies": {
"@marionebl/is": "^0.5.1-0",
"@types/globby": "^6.1.0",
"@types/ini": "^1.3.29",
"@types/jest": "^21.1.5",
"@types/lodash": "^4.14.84",
"@types/node": "^8.0.50",
"aggregate-error": "^1.0.0",
"bplist-parser": "^0.1.1",
"color": "^2.0.1",
"hex-rgb": "^1.0.0",
"ini": "^1.3.4",
"lodash": "^4.17.4",
"plist": "^2.1.0",
"require-from-string": "^2.0.1",
"resolve-from": "^4.0.0",
"terminal-default-colors": "^1.0.2"
}
}