This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "web-termjs",
"description": "Terminal emulator for browsers",
"version": "1.1.2",
"main": "./lib/terminal.js",
"types": "./lib/terminal.d.ts",
"author": {
"name": "Daniel Däschle",
"email": "[email protected]",
"url": "https://github.com/danieldaeschle"
},
"repository": {
"type": "git",
"url": "https://github.com/danieldaeschle/web-termjs"
},
"keywords": [
"util",
"functional",
"browser",
"terminal",
"console",
"shell"
],
"license": "MIT",
"scripts": {
"test": "karma start",
"clean": "node node_modules/shx/lib/cli.js rm -rf _bundles lib lib-esm",
"build:sass": "node node_modules/node-sass/bin/node-sass --output-style compressed src/terminal.scss > dist/terminal.min.css && node node_modules/node-sass/bin/node-sass src/terminal.scss > dist/terminal.css",
"build:ts": "tsc && tsc -m es6 --outDir lib-esm && webpack",
"build": "npm run clean && npm run build:ts && npm run build:sass"
},
"directories": {
"src": "src"
},
"devDependencies": {
"@types/node": "^8.0.51",
"awesome-typescript-loader": "^3.3.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-webpack": "^2.0.6",
"node-sass": "^4.6.1",
"shx": "^0.2.2",
"ts-node": "^3.3.0",
"tsc": "^1.20150623.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.1",
"watchify": "^3.9.0",
"webpack": "^3.8.1"
}
}