-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"name": "@htmlacademy/console.js",
"version": "1.2.9",
"description": "Inbrowser Demo Console",
"author": "nikolayemrikh",
"license": "ISC",
"repository": {
"type": "git",
"url": "ssh://[email protected]:htmlacademy/console.js.git"
},
"scripts": {
"clear": "rm -rf build",
"copy": "./scripts/copy.sh",
"test": "npm run eslint && npm run stylelint && npm run karma:run",
"karma:run": "npm run copy && npm run webpack:test && node ./scripts/karma.server.js",
"eslint": "eslint src/",
"stylelint": "stylelint 'sass/**/*.scss' --syntax scss",
"build": "npm run webpack && npm run copy",
"webpack": "NODE_ENV=production webpack --progress --no-stats",
"webpack:test": "NODE_ENV=test webpack --progress --no-stats",
"build:prod": "npm run webpack",
"serve": "http-server build -p 3501 -o .",
"start": "npm run copy && npm run webpack && npm run serve",
"deploy": "npm run build:prod && ./deploy.sh",
"deploy:exact-version": "npm run build:prod && ONLY_VERSION=true ./deploy.sh"
},
"dependencies": {
"acorn": "8.7.0",
"lodash.mergewith": "4.6.2",
"misbehave": "0.3.0",
"prismjs": "1.28.0"
},
"devDependencies": {
"@babel/core": "7.16.12",
"@babel/plugin-external-helpers": "7.16.7",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.16.11",
"autoprefixer": "10.4.2",
"babel-plugin-prismjs": "2.1.0",
"chai": "4.3.4",
"core-js": "3.20.3",
"del": "6.0.0",
"eslint": "8.7.0",
"eslint-config-htmlacademy": "5.0.0",
"gh-pages": "4.0.0",
"karma": "6.4.0",
"karma-babel-preprocessor": "8.0.2",
"karma-chrome-launcher": "3.1.1",
"karma-mocha": "2.0.1",
"mocha": "10.0.0",
"stylelint": "13.13.1",
"stylelint-config-htmlacademy": "0.1.12",
"css-loader": "6.7.1",
"css-mqpacker": "7.0.0",
"glob": "8.0.3",
"http-server": "14.1.1",
"mini-css-extract-plugin": "2.6.1",
"postcss": "8.4.14",
"postcss-csso": "6.0.0",
"postcss-loader": "7.0.1",
"puppeteer": "15.5.0",
"sass": "1.49.0",
"sass-loader": "13.0.2",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"main": "src/console.js",
"types": "types/console.d.ts",
"engines": {
"node": ">=12.22.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}