-
Notifications
You must be signed in to change notification settings - Fork 423
/
package.json
117 lines (117 loc) · 3.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "slickgrid",
"version": "5.5.6",
"description": "A lightning fast JavaScript grid/spreadsheet",
"main": "./dist/browser/index.js",
"module": "./dist/esm/index.js",
"types": "index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"dist/types/*"
]
}
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./dist/styles/*": "./dist/styles/*",
"./package.json": "./package.json"
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/6pac/SlickGrid.git"
},
"keywords": [
"slickgrid",
"grid"
],
"author": "Michael Leibman <[email protected]>",
"contributors": [
"Ben McIntyre <[email protected]>",
"Ghislain B."
],
"license": "MIT",
"bugs": {
"url": "https://github.com/6pac/SlickGrid/issues"
},
"homepage": "https://github.com/6pac/SlickGrid#readme",
"scripts": {
"clean": "rimraf dist",
"cypress": "npx cypress open --config-file cypress/cypress.config.ts",
"cypress:ci": "npx cypress run --config-file cypress/cypress.config.ts",
"predev": "rimraf --glob dist/{browser,esm}",
"dev": "node ./scripts/dev-watch.mjs --open",
"serve": "node ./scripts/dev-watch.mjs --serve",
"serve:demo": "http-server ./ -p 8080 -a localhost -s",
"lint": "eslint src -c .eslintrc --ext .ts",
"minify": "node ./scripts/minify.js --start",
"prebuild:prod": "rimraf dist && npm run lint",
"build:prod": "node ./scripts/builds.mjs --prod",
"build:types": "tsc --emitDeclarationOnly --incremental --declarationMap --outDir dist/types",
"preview:release": "node ./scripts/release.mjs --create-release github --dry-run --skip-checks",
"release": "node ./scripts/release.mjs --create-release github",
"presass:build": "rimraf dist/styles/css",
"sass:build": "sass src/styles:dist/styles/css --style=compressed --quiet-deps --no-source-map",
"postsass:build": "postcss dist/styles/css/**/* --dir dist/styles/css --base dist/styles/css --no-map --use cssnano --use autoprefixer --style=compressed",
"sass:copy": "copyfiles -f src/styles/*.scss dist/styles/sass"
},
"dependencies": {
"sortablejs": "^1.15.1"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@octokit/rest": "^19.0.13",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"autoprefixer": "^10.4.16",
"browser-sync": "^2.29.3",
"chokidar": "^3.5.3",
"conventional-changelog": "^5.1.0",
"copyfiles": "^2.4.1",
"cssnano": "^6.0.1",
"cssnano-preset-lite": "^3.0.0",
"cypress": "^13.6.0",
"dotenv": "^16.3.1",
"esbuild": "^0.19.8",
"eslint": "^8.55.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^11.2.0",
"git-url-parse": "^13.1.1",
"glob": "^10.3.10",
"http-server": "^14.1.1",
"inquirer": "^9.2.12",
"load-json-file": "^7.0.1",
"new-github-release-url": "^2.0.0",
"path": "^0.12.7",
"picocolors": "^1.0.0",
"postcss": "^8.4.32",
"postcss-cli": "^10.1.0",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"semver": "^7.5.4",
"servor": "^4.0.2",
"strong-log-transformer": "^2.1.0",
"typescript": "^5.3.2",
"yargs": "^17.7.2"
},
"browserslist": [
"last 2 version",
"> 0.5%",
"not dead"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}