This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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": "cubex-base",
"version": "1.0.0",
"description": "Playground for Learning Cubex",
"keywords": [],
"homepage": "https://github.com/MrEssex/cubex-base#readme",
"bugs": {
"url": "https://github.com/MrEssex/cubex-base/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrEssex/cubex-base.git"
},
"license": "ISC",
"author": "",
"main": "rollup.config.js",
"scripts": {
"build": "cross-env NODE_ENV=production gulp",
"coverage": "nyc --report=text npm run test",
"lint": "npm run lint:ts && npm run lint:css",
"lint:css": "stylelint assets/scss/**/*.scss",
"lint:ts": "eslint --ext .ts,.tsx assets",
"test": "cross-env TS_NODE_PROJECT=tsconfig.test.json mocha",
"watch": "cross-env NODE_ENV=development gulp watch"
},
"browserslist": [
"> 0.02%",
"last 2 versions",
"Firefox ESR"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/stream": "^3.0.1",
"@types/chai": "^4.3.5",
"@types/jsdom": "^21.1.1",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"autoprefixer": "^10.4.14",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"fast-glob": "^3.3.2",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sass-glob": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"postcss": "^8.4.31",
"postcss-discard-comments": "^6.0.0",
"rollup": "^4.5.0",
"sass": "^1.64.2",
"stylelint": "^15.10.2",
"stylelint-config-clean-order": "^0.1.1",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}