-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 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
{
"name": "chai-snapshot-tests",
"version": "0.6.0",
"description": "Add Jest-like snapshot testing to chai",
"main": "dist/index.js",
"author": "Marvin Hagemeister <marvin@marvinhagemeister.de>",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:marvinhagemeister/chai-snapshot-tests.git"
},
"license": "MIT",
"scripts": {
"cleanup": "rimraf dist/",
"lint": "tslint 'src/**/*.ts'",
"watch": "tsc -w",
"build": "npm run cleanup && tsc",
"test": "mocha --compilers ts:ts-node/register 'src/**/__tests__/*.spec.ts'",
"test-watch": "npm t -- -w -R min",
"coverage": "nyc npm t",
"prepublish": "npm run lint && npm t && npm run build"
},
"dependencies": {
"@types/chai": "^4.0.0",
"@types/mkdirp": "^0.3.29",
"@types/node": "^7.0.29",
"chai": "^4.0.2",
"mkdirp": "^0.5.1",
"nicer-fs": "^1.1.0"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"mocha": "^3.3.0",
"nyc": "^11.0.2",
"rimraf": "^2.6.1",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"tslint-config-sevenval": "^0.6.2",
"typescript": "^2.3.4"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"typings",
"node_modules/",
"**/__tests__/**",
"__tests__/**",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text",
"text-summary",
"lcovonly"
],
"all": true
}
}