-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "quill-table-ui",
"version": "1.0.7",
"description": "UI for Quill tables",
"main": "dist/umd/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build:umd": "webpack --config webpack.config.ts --mode=production",
"build:esm": "tsc --module es2015",
"build:dist": "npm run build:esm && npm run build:umd",
"build:clean": "rm -rf dist",
"build:styles": "node-sass src/index.scss --output dist/ --output-style compressed",
"postversion": "npm run build:dist && npm run build:styles && git push && npm publish && npm run build:clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/volser/quill-table-ui.git"
},
"keywords": [
"quill",
"table",
"ui"
],
"author": "Sergiy Voloshyn <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/volser/quill-table-ui/issues"
},
"homepage": "https://github.com/volser/quill-table-ui#readme",
"devDependencies": {
"@types/node": "^12.7.2",
"@types/webpack": "^4.32.2",
"node-sass": "^4.12.0",
"quill": "^2.0.0-dev.3",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"positioning": "^2.0.0"
}
}