-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "@snaptopixel/testify",
"version": "0.4.1",
"description": "Easily test browser-ish Typescript projects with mocha",
"main": "./testify.js",
"types": "./testify.d.ts",
"scripts": {
"test": "testify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snaptopixel/utility-belt.git"
},
"keywords": [
"mocha",
"chai",
"typescript",
"sinon",
"jsdom",
"glob"
],
"author": "Casey Corcoran <github@snaptopixel.com> (http://snaptopixel.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/snaptopixel/utility-belt/issues"
},
"homepage": "https://github.com/snaptopixel/utility-belt#readme",
"bin": {
"testify": "./testify.js"
},
"dependencies": {
"@types/chai": "^4.1.3",
"@types/chai-dom": "^0.0.6",
"@types/mocha": "^5.2.0",
"@types/sinon": "^4.3.3",
"@types/sinon-chai": "^2.7.31",
"chai": "^4.1.2",
"chai-dom": "^1.8.0",
"chokidar": "^2.0.3",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.10",
"minimatch": "^3.0.4",
"mocha": "^5.2.0",
"require-from-string": "^2.0.2",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.6",
"ts-node": "^6.0.5",
"typescript": "^2.8.3",
"vue-template-compiler": "^2.5.16",
"yargs": "^11.0.0"
},
"devDependencies": {
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^7.0.0",
"vue-test-utils": "^1.0.0-beta.11"
}
}