forked from 6pac/SlickGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "slickgrid",
"version": "4.0.0",
"description": "A lightning fast JavaScript grid/spreadsheet",
"main": "slick.core.js",
"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]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/6pac/SlickGrid/issues"
},
"homepage": "https://github.com/6pac/SlickGrid#readme",
"scripts": {
"cypress": "npx cypress open",
"cypress:ci": "npx cypress run --reporter xunit --reporter-options output=testresult.xml",
"serve": "http-server ./ -p 8080 -a localhost -s",
"clean": "rimraf dist",
"minify": "node ./scripts/minify.js --start",
"preview:release": "node ./scripts/release.js --create-release github --dry-run --skip-checks",
"release": "node ./scripts/release.js --create-release github"
},
"dependencies": {
"sortablejs": "^1.15.0"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.3",
"@octokit/rest": "^19.0.7",
"autoprefixer": "^10.4.14",
"chalk": "^4.1.2",
"conventional-changelog": "^3.1.25",
"cssnano": "^6.0.1",
"cssnano-preset-lite": "^3.0.0",
"cypress": "^9.7.0",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-plugin-cypress": "^2.13.3",
"fs-extra": "^10.1.0",
"git-url-parse": "^13.1.0",
"http-server": "^14.1.1",
"inquirer": "^8.2.5",
"new-github-release-url": "^1.0.0",
"path": "^0.12.7",
"postcss": "^8.4.23",
"rimraf": "^3.0.2",
"semver": "^7.5.0",
"strong-log-transformer": "^2.1.0",
"uglify-js": "^3.17.4",
"yargs": "^17.7.2"
}
}