forked from schickling/timemachine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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": "@alexfr26/timemachine",
"version": "0.4.0",
"description": "Test your time critical app by overriding the native Javascript Date function",
"main": "timemachine.js",
"type": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt test --verbose",
"build": "grunt build",
"bump": "grunt bump"
},
"repository": {
"type": "git",
"url": "https://github.com/alexfr26/timemachine.git"
},
"keywords": [
"time",
"date",
"override",
"overwrite",
"global",
"manipulation",
"testing",
"test"
],
"author": "Johannes Schickling <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexfr26/timemachine/issues"
},
"devDependencies": {
"coveralls": "~2.12.0",
"grunt": "^1.6.1",
"grunt-bump": "~0.8.0",
"grunt-cli": "~1.2.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~2.2.0",
"grunt-karma": "~2.0.0",
"jasmine-core": "~2.5.2",
"karma": "~1.5.0",
"karma-coverage": "~1.1.1",
"karma-jasmine": "~1.1.0",
"karma-phantomjs-launcher": "~1.0.4",
"load-grunt-tasks": "~3.5.2",
"phantomjs": "~2.1.7"
}
}