-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
118 lines (118 loc) · 3.33 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "solidarity",
"version": "3.0.4",
"description": "Make sure all React Native dependencies are uniform across machines",
"homepage": "https://infinitered.github.io/solidarity/",
"repository": "https://github.com/infinitered/solidarity",
"bin": {
"solidarity": "bin/solidarity"
},
"types": "dist/types/index.d.ts",
"scripts": {
"start": "node bin/solidarity",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "yarn format && tsc",
"format": "prettier --write \"**/*.ts\" -l \"warn\" && tslint -p . --fix",
"shipit": "tsc && yarn copyTemplates && np",
"test": "jest && yarn test:extras",
"test:ci": "jest --ci --runInBand && yarn test:extras",
"test:extras": "tslint -p . && yarn madge --extensions ts --circular src/",
"lint": "tslint -p .",
"newclear": "rm -rf node_modules && yarn && tsc",
"watch": "jest --watch",
"coverage": "jest --no-cache --ci --coverage",
"snapupdate": "jest -u",
"welcome": "yarn tsc && npm link",
"serve:docs": "docsify serve docs",
"maintenence": "yarn tryupdate && typesync",
"addTypes": "typesync",
"tryupdate": "updtr",
"copyTemplates": "cp -R ./src/templates ./dist/",
"recordDemo": "ZDOTDIR=/Users/gantman/recording terminalizer record pretty -c ./config.yml",
"playDemo": "terminalizer play pretty",
"renderDemo": "terminalizer render pretty",
"cleanDemo": "rm -rf render*.gif"
},
"author": "Gant Laborde",
"license": "MIT",
"dependencies": {
"callsite": "^1.0.0",
"envinfo": "7.5.0",
"gluegun": "^5.1.6",
"json5": "2.1.1",
"listr": "^0.14.3",
"minimist": "^1.2.0",
"ramda": "0.27.0",
"resolve-dir": "^1.0.1"
},
"devDependencies": {
"@types/callsite": "^1.0.30",
"@types/execa": "2.0.0",
"@types/jasmine": "3.5.8",
"@types/jest": "25.1.3",
"@types/json5": "0.0.30",
"@types/listr": "^0.14.2",
"@types/minimist": "^1.2.0",
"@types/node": "12.6.6",
"@types/prettier": "1.19.0",
"@types/ramda": "0.26.43",
"@types/tempy": "0.3.0",
"ajv": "6.12.0",
"all-contributors-cli": "6.14.0",
"babel-eslint": "10.1.0",
"codecov.io": "^0.1.6",
"coveralls": "3.0.9",
"danger": "9.2.10",
"danger-plugin-spellcheck": "1.5.0",
"docsify-cli": "4.4.0",
"execa": "1.0.0",
"jest": "22.4.2",
"madge": "3.7.0",
"np": "6.2.0",
"prettier": "1.19.1",
"tempy": "0.4.0",
"ts-jest": "22.4.6",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"tslint-config-standard": "9.0.0",
"typescript": "3.8.3",
"typesync": "0.6.1",
"updtr": "^3.1.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"setupFiles": [
"./__tests__/setup.ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"__mocks__",
"setup.ts"
],
"coverageThreshold": {
"global": {
"statements": 84,
"branches": 77,
"lines": 85,
"functions": 81
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}