-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.31 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.31 KB
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
{
"name": "grid",
"version": "0.0.0-semantic-release",
"description": "A highly scalable grid component written in Typescript",
".browser": "dist/grid.js",
"main": "dist/modules/core/index.js",
"typings": "dist/modules/core/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=10"
},
"iqproj": {
"app": true
},
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS",
"preversion": "npm run build",
"open:src": "ts-node -P tsconfig.srv.json tools/srcServer.ts",
"ts:watch": "tsc --watch --incremental",
"dev": "npm-run-all --parallel open:src test:watch ts:watch",
"clean": "rm -rf ./dist && mkdir dist",
"prebuild": "npm run clean && npm run test",
"build": "tsc -P tsconfig.json && NODE_ENV=production node tools/build.js",
"test": "node_modules/karma/bin/karma start --single-run --no-auto-watch karma.conf.js",
"test:watch": "node_modules/karma/bin/karma start karma.conf.js",
"semantic-release": "semantic-release"
},
"dependencies": {
"capitalize": "^0.5.0",
"click-off": "~0.2.1",
"element-class": "^0.1.1",
"es6-object-assign": "~1.1.0",
"escape-stack": "~0.1.2",
"inner-text-shim": "~1.0.1",
"key": "^0.1.11",
"time-now": "~0.2.1"
},
"devDependencies": {
"@commitlint/cli": "~9.1.2",
"@commitlint/config-conventional": "~12.1.4",
"@types/anymatch": "~3.0.0",
"@types/browser-sync": "~2.26.1",
"@types/jasmine": "~2.6.0",
"@types/karma": "~1.7.0",
"@types/webpack-dev-middleware": "~3.7.1",
"@types/webpack-hot-middleware": "~2.25.3",
"autoprefixer": "~10.2.5",
"browser-sync": "~2.26.12",
"condition-circle": "~2.0.2",
"copy-webpack-plugin": "~3.0.1",
"css-loader": "~5.2.4",
"ejs-compiled-loader": "~3.0.0",
"es6-promise": "~3.1.2",
"fibers": "~5.0.0",
"file-loader": "~0.9.0",
"html-webpack-plugin": "~4.3.0",
"husky": "~0.13.3",
"install": "~0.13.0",
"jasmine": "~3.6.1",
"jquery": "~3.5.1",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-jasmine": "~0.3.6",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~4.0.2",
"lodash": "~4.17.21",
"mini-css-extract-plugin": "~0.10.0",
"node-sass": "~4.14.1",
"npm-run-all": "~4.0.2",
"polyfill-function-prototype-bind": "0.0.1",
"postcss-loader": "~0.11.0",
"sass-loader": "~9.0.3",
"semantic-release": "~15.14.0",
"source-map-loader": "~1.0.1",
"style-loader": "~1.2.1",
"transform-ts-paths": "^1.0.0",
"ts-loader": "~8.0.2",
"ts-node": "~8.10.2",
"tslint": "^5.4.2",
"tslint-eslint-rules": "^4.1.1",
"typescript": "~4.2.4",
"url-loader": "~4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "~3.8.0",
"webpack-cli": "~3.3.12",
"webpack-dev-middleware": "~3.7.2",
"webpack-hot-middleware": "~2.25.0",
"webpack-md5-hash": "~0.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gridgrid/grid.git"
},
"keywords": [
"grid",
"spreadsheet",
"virtual",
"scroll"
],
"author": "Sterling Camden",
"license": "MIT",
"bugs": {
"url": "https://github.com/gridgrid/grid/issues"
},
"homepage": "https://github.com/gridgrid/grid",
"release": {
"verifyConditions": "condition-circle"
}
}