-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.06 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.06 KB
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
{
"name": "styled-cli-table",
"version": "1.3.0",
"description": "Terminal table rendering library with cascading styles and composable architecture",
"type": "module",
"main": "./commonjs/index.js",
"module": "./module/index.js",
"exports": {
"./module/": "./module/",
"./commonjs/": "./commonjs/",
"./": {
"import": "./module/",
"require": "./commonjs/"
},
".": {
"import": "./module/index.js",
"require": "./commonjs/index.js"
}
},
"scripts": {
"clean:commonjs": "rimraf commonjs",
"build:commonjs": "npm run clean:commonjs && tsc --project config/tsconfig.commonjs.json && copyfiles -u 1 \"lib/**/*.d.ts\" commonjs && copyfiles -u 1 config/package.commonjs.json commonjs && node scripts/rename.js commonjs/package.commonjs.json commonjs/package.json",
"clean:module": "rimraf module",
"build:module": "npm run clean:module && ttsc --project config/tsconfig.module.json && copyfiles -u 1 \"lib/**/*.d.ts\" module",
"clean": "rimraf commonjs module",
"build": "npm run build:commonjs && npm run build:module",
"test": "cross-env TS_NODE_PROJECT=config/tsconfig.test.json node --harmony-optional-chaining --harmony-nullish --require ts-node/register node_modules/mocha/bin/mocha --extension ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evg656e/styled-cli-table.git"
},
"keywords": [
"cli",
"console",
"table",
"style",
"ascii",
"terminal"
],
"author": "evg656e <evg656e@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evg656e/styled-cli-table/issues"
},
"homepage": "https://github.com/evg656e/styled-cli-table#readme",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@evg656e/typescript-transformer-append-js-extension": "^1.0.2",
"copyfiles": "^2.3.0",
"cross-env": "^7.0.2",
"mocha": "^8.0.1",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.10",
"typescript": "^3.9.6"
},
"files": [
"commonjs",
"module"
]
}