-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.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
{
"name": "truman",
"version": "1.1.5",
"description": "Simple test fixtures for single page apps",
"main": "src/truman.js",
"engine": "node >= 8.0.0",
"scripts": {
"release": "./scripts/release.sh",
"build": "gulp build",
"lint": "standard --fix",
"test": "npm-run-all test:mocha test:karma",
"start": "gulp start",
"test:mocha": "mocha test/unit --recursive",
"test:karma": "karma start"
},
"keywords": [
"fixturing",
"fixture",
"mock",
"http",
"client",
"single",
"page",
"record",
"replay",
"XHR",
"SPA"
],
"author": "Michael Carter",
"license": "MIT",
"dependencies": {
"Base64": "^1.0.1",
"lie": "^3.2.0",
"lodash": "^4.17.4",
"omit-deep": "splodingsocks/omit-deep",
"pouchdb": "^6.4.2",
"sinon": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"del": "^3.0.0",
"dirty-chai": "^2.0.1",
"fast-levenshtein": "^2.0.6",
"gulp": "~3.9.0",
"gulp-changed": "^3.2.0",
"gulp-connect": "^5.2.0",
"gulp-notify": "^3.2.0",
"gulp-open": "^2.1.0",
"gulp-rename": "~1.2.2",
"gulp-watch": "^5.0.0",
"http-rewrite-middleware": "~0.1.6",
"imports-loader": "~0.6.5",
"jsdom": "^11.6.2",
"karma": "~0.13.19",
"karma-chrome-launcher": "~0.2.2",
"karma-mocha": "~0.2.1",
"karma-sauce-launcher": "~0.3.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "~1.7.0",
"mocha": "^5.0.0",
"npm-run-all": "^4.1.2",
"run-sequence": "^2.2.1",
"sinon-chai": "^2.14.0",
"standard": "^10.0.3",
"webpack": "~1.12.11",
"webpack-stream": "~3.1.0",
"xmlhttprequest": "~1.8.0"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"context",
"describe",
"expect",
"it"
]
}
}