-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
154 lines (154 loc) · 5.93 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "vuejs-datatable",
"version": "2.0.0-alpha.7",
"description": "A Vue.js component for filterable, sortable, and paginated tables.",
"main": "dist/vuejs-datatable.esm",
"module": "dist/vuejs-datatable.esm",
"browser": "dist/vuejs-datatable.esm",
"types": "dist/vuejs-datatable.esm",
"scripts": {
"ci": "ts-node -P tsconfig.json -O {\\\"module\\\":\\\"commonjs\\\"} ci/run-ci.ts",
"doc": "npm run doc:examples && npm run doc:typedoc && npm run doc:copy-assets",
"doc:copy-assets": "npm run doc:copy-assets:demos && npm run doc:copy-assets:lib && npm run doc:styles && npm run doc:copy-assets:data",
"doc:copy-assets:demos": "npx copyfiles -f tutorials/dist/*.js docs/assets/js/tutorials",
"doc:copy-assets:lib": "npx copyfiles -f dist/vuejs-datatable.js dist/vuejs-datatable.js.map dist/themes/bootstrap-3.js docs/assets/js",
"doc:styles": "node-sass --output-style compressed ./tutorials/assets/additional-styles.scss --output ./docs/assets/css",
"doc:copy-assets:data": "npx copyfiles -f tutorials/assets/rows.js docs/assets/js",
"doc:examples": "rimraf tutorials/{dist,.tmp} && ts-node -P ./tsconfig.json -O {\\\"module\\\":\\\"commonjs\\\"} tutorials/build/build-examples.ts",
"doc:typedoc": "rimraf docs && typedoc --options ./typedoc.json",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:ci:watch": "npm run test:ci --watch",
"test:unit": "jest --config jest.unit.config.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest --config jest.integration.config.js",
"test:integration:watch": "npm run test:integration -- --watch",
"test:e2e": "if [ -z \"$CYPRESS_KEY\" ]; then cypress run; else cypress run --record --key $CYPRESS_KEY; fi",
"test:e2e:gui": "cypress open",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"build": "npm run build:production",
"build:dev": "rollup -c rollup.config.js",
"build:production": "rollup -c rollup.config.js --environment BUILD:production",
"build:watch": "rollup -c rollup.config.js --watch",
"version": "npm run build && git add dist --force && npm run doc && git add docs --force",
"release": "standard-version -a",
"prerelease": "standard-version -a --prerelease"
},
"keywords": [
"Vue.js",
"vue",
"datatable",
"table",
"filter",
"sort",
"sortable",
"paginate",
"pagination"
],
"files": [
"types",
"dist",
"docs"
],
"dependencies": {
"core-js": "^3.2.1",
"object-path": "^0.11.4",
"vue-property-decorator": "^8.2.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@diaspora/dev-tslint": "^1.2.0",
"@types/axios": "^0.14.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"@types/jsdom": "^12.2.4",
"@types/lodash": "^4.14.138",
"@types/object-path": "^0.11.0",
"@types/semver": "^6.0.2",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"chalk": "^3.0.0",
"copyfiles": "2.1.1",
"cypress": "^3.4.1",
"flush-promises": "^1.0.2",
"fs-extra": "^8.1.0",
"git-cz": "^3.2.1",
"jasmine-core": "^3.4.0",
"jest": "^24.9.0",
"jscc": "^1.1.1",
"jsdom": "^15.1.1",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"rimraf": "^3.0.0",
"rollup": "^1.21.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.0",
"rollup-plugin-visualizer": "^3.2.2",
"rollup-plugin-vue-template-compiler": "git+https://github.com/GerkinDev/rollup-plugin-vue-template-compiler.git",
"semver": "^7.0.0",
"standard-version": "^7.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"tsconfig": "^7.0.0",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typedoc-plugin-sourcefile-url": "^1.0.4",
"typedoc-plugin-tutorials": "0.0.1-alpha.1",
"typedoc-plugin-vue": "git+https://github.com/GerkinDev/typedoc-plugin-vue.git#release",
"typescript": "^3.7.4",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"vue": "^2.2.0"
},
"standard-version": {
"scripts": {
"postbump": "npm run version"
},
"releaseCommitMessageFormat": "chore: 🤖 release {{currentTag}} from {{previousTag}}"
},
"author": {
"name": "Patrick Stephan",
"email": "[email protected]"
},
"contributors": [
{
"name": "GerkinDev",
"email": "[email protected]",
"url": "https://ithoughts.io/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/GerkinDev/vuejs-datatable.git"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"bugs": {
"url": "https://github.com/GerkinDev/vuejs-datatable/issues"
},
"homepage": "https://github.com/GerkinDev/vuejs-datatable#readme",
"directories": {
"doc": "docs"
}
}