-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
77 lines (77 loc) · 2.39 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
74
75
76
77
{
"name": "shell.js",
"version": "4.3.4",
"description": "A JavaScript library to create HTML terminals in web pages.",
"author": "Davide Caruso <davide.caruso93@gmail.com>",
"homepage": "https://davidecaruso.github.io/shell.js",
"main": "lib/shell.js",
"license": "MIT",
"repository": "git+https://github.com/davidecaruso/shell.js.git",
"bugs": {
"url": "https://github.com/davidecaruso/shell.js/issues"
},
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"eslint": "eslint --fix-dry-run ./",
"eslint:fix": "eslint --fix ./",
"prettier": "prettier --write ./src ./webpack.*.js",
"test": "mocha -r mocha.module.js -r ts-node/register --globals window **/*.test.ts",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc npm run test",
"test:report": "npm run test:coverage && nyc report --reporter=html",
"watch": "npm run build:dev -- --watch"
},
"keywords": [
"shell",
"shell.js",
"terminal-emulators",
"terminal",
"typescript",
"javascript-library",
"javascript-plugin"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.0",
"@types/node": "^7.0.7",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"autoprefixer": "^10.4.13",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"css-loader": "^3.4.2",
"css-modules-require-hook": "^1.0.11",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"expect": "^25.0.0",
"istanbul": "^0.4.5",
"jsdom": "^16.5.0",
"jshint-stylish": "^2.2.1",
"mocha": "^10.2.0",
"node-sass": "^7.0.0",
"nyc": "^15.0.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "^2.6.2",
"sass-loader": "^12.1.0",
"should": "^13.1.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^2.3.8",
"ts-loader": "^9.2.5",
"ts-node": "^6.1.0",
"typed.js": "^2.0.7",
"typescript": "^4.0.2",
"url-loader": "^3.0",
"webpack": "^5.0",
"webpack-cli": "^4.8.0",
"webpack-merge": "^4.1.2"
}
}