-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "contentful-schema-diff",
"version": "0.10.3",
"description": "",
"main": "dist/main.js",
"bin": {
"contentful-schema-diff": "bin/index.js"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"scripts": {
"lint": "tslint 'src/**/*.ts'",
"fix": "tslint 'src/**/*.ts' --fix",
"test": "bash -c 'shopt -s globstar; tsc --project tsconfig.test.json && nyc ava src/**/*.test.js' && mkdir -p ./coverage && yarn nyc report --reporter=text-lcov > ./coverage/lcov.info",
"coverage": "yarn run test && nyc report --reporter=html && open coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test-watch": "ava -s --watch",
"build": "tsc",
"clean": "bash -c 'shopt -s globstar; rm -f src/**/*.d.ts src/**/*.js src/**/*.js.map; tsc --build --clean || true; rm -rf dist coverage .nyc_output || true'",
"prepare": "yarn run build"
},
"author": "Gordon Burgett (gordon@gordonburgett.net)",
"license": "MIT",
"repository": "https://github.com/watermarkchurch/contentful-schema-diff",
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/lodash": "^4.14.116",
"@types/node": "^12.12.6",
"@types/node-fetch": "^2.5.8",
"@types/sinon": "^9.0.11",
"@types/yargs": "^11.0.0",
"ava": "2.4.0",
"coveralls": "^3.0.2",
"nyc": "^13.1.0",
"sinon": "^10.0.0",
"ts-node": "^9.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1"
},
"dependencies": {
"fs-extra": "^5.0.0",
"json-diff": "^0.7.1",
"lodash": "^4.17.10",
"node-fetch": "^2.6.1",
"prettier": "^1.18.2",
"yargs": "^11.0.0"
},
"ava": {
"files": [
"src/**/*.test.ts"
],
"cache": true,
"failFast": true,
"verbose": true,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}