-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "knockout-undoredo",
"version": "3.0.8",
"description": "Generic undo/redo history-management for knockout observables",
"repository": "krnlde/knockout-undoredo",
"main": "dist/knockout-undoredo.min.js",
"scripts": {
"build": "gulp build",
"test": "mocha --require @babel/register",
"test-watch": "mocha --require @babel/register --watch"
},
"keywords": [
"undo",
"redo",
"knockout",
"ko"
],
"files": [
"dist"
],
"author": "Kai Dorschner",
"license": "MIT",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"core-js": "2.6.12",
"knockout": "3.5.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.2.0",
"gulp-connect": "^5.7.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-eslint": "^6.0.0",
"gulp-git": "^2.10.1",
"gulp-mocha": "^8.0.0",
"gulp-notify": "^3.0.0",
"gulp-open": "^3.0.1",
"gulp-rename": "^2.0.0",
"gulp-tag-version": "^1.3.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.7",
"minimist": "^1.2.5",
"mocha": "^8.3.2"
}
}