Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
48 lines (48 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "@expressive-tea/tea",
"version": "1.0.0-alpha.2",
"description": "Expressive Tea CLI",
"main": "build/tea.js",
"bin": {
"tea": "build/tea.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"exec": "ts-node tea.ts",
"dev": "tsc -p tsconfig.json -w",
"linter": "tslint -c tslint.json -p tsconfig.json",
"optimize": "npx uglifyjs -c -m --verbose build/tea.js",
"clean": "npx rimraf build",
"postpublish": "npm run clean",
"prepublishOnly": "npm run linter && npm run build"
},
"author": "Diego Resendez <diego.resendez@zero-oneit.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "16.4.3",
"@types/reflect-metadata": "0.1.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"ts-node": "10.1.0",
"tsconfig-paths": "3.10.1",
"tslint": "6.1.3",
"typescript": "4.3.5",
"uglify-js-es6": "2.8.9"
},
"dependencies": {
"@caporal/core": "2.0.2",
"async-shelljs": "0.1.4",
"chalk": "^4.1.1",
"cli-spinners": "2.6.0",
"colors": "1.4.0",
"glob": "7.1.7",
"inquirer": "8.1.2",
"lodash": "4.17.21",
"ora": "5.4.1",
"prompt": "1.1.0",
"semver": "7.3.5",
"shelljs": "0.8.4",
"spdx-license-list": "6.4.0"
}
}