-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.79 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
{
"name": "js-mock",
"description": "Simple mocking framework for Javascript unit tests",
"version": "2.0.0",
"license": "BSD-3-Clause",
"author": {
"name": "Johannes Fischer",
"email": "[email protected]",
"url": "http://jsmock.org"
},
"repository": {
"type": "git",
"url": "https://github.com/j-fischer/js-mock"
},
"keywords": [
"test",
"testing",
"mock",
"mocking"
],
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"grunt": "1.2.1",
"grunt-babel": "^8.0.0",
"grunt-bump": "^0.8.0",
"grunt-check-dependencies": "1.0.0",
"grunt-cli": "1.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "1.6.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-nodeunit": "2.1.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-coveralls": "^2.0.0",
"grunt-insert": "^0.1.0",
"grunt-jsdoc": "2.4.1",
"grunt-jslint": "1.1.15",
"grunt-karma": "~4.0.0",
"grunt-karma-coveralls": "^2.5.4",
"grunt-mkdir": "^1.0.0",
"grunt-move": "^1.0.3",
"grunt-replace": "^1.0.1",
"grunt-shell": "^3.0.1",
"grunt-todo": "^0.5.0",
"hamjest": "^3.7.1",
"istanbul": "0.4.5",
"jasmine-core": "^3.5.0",
"jest": "^26.1.0",
"jit-grunt": "^0.10.0",
"jquery": "^3.5.1",
"jsdoc-oblivion": "0.0.9",
"jsdom": "^16.3.0",
"jshint-stylish": "2.2.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"requirejs": "2.3.6",
"time-grunt": "2.0.0"
},
"files": [
"dist",
"LICENSE.txt",
"README.md",
"CHANGELOG.md"
],
"main": "./dist/js-mock.js",
"scripts": {
"test": "grunt build",
"postversion": "git push && git push --tags"
}
}