forked from infinitered/solidarity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.94 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
{
"name": "solidarity",
"version": "2.0.2",
"description": "Make sure all React Native dependencies are uniform across machines",
"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": "tryupdate && typesync",
"addTypes": "typesync",
"tryupdate": "updtr -u npm",
"copyTemplates": "cp -R ./src/templates ./dist/"
},
"author": "Gant Laborde",
"license": "MIT",
"dependencies": {
"callsite": "^1.0.0",
"envinfo": "4.0.0-beta.7",
"gluegun": "2.0.0-beta.7",
"json5": "^0.5.1",
"minimist": "^1.2.0",
"ramda": "0.25.0"
},
"devDependencies": {
"@types/callsite": "^1.0.30",
"@types/execa": "^0.8.0",
"@types/jest": "^22.1.3",
"@types/json5": "^0.0.29",
"@types/minimist": "^1.2.0",
"@types/node": "^9.4.6",
"@types/prettier": "^1.10.0",
"@types/ramda": "^0.25.18",
"@types/tempy": "^0.1.0",
"ajv": "^6.1.1",
"all-contributors-cli": "^4.11.0",
"babel-eslint": "^8.2.2",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.0",
"danger": "^3.1.7",
"danger-plugin-spellcheck": "^1.2.2",
"docsify-cli": "^4.2.0",
"execa": "^0.9.0",
"jest": "^22.4.2",
"madge": "^3.0.1",
"np": "^2.20.1",
"prettier": "^1.10.2",
"tempy": "^0.2.1",
"ts-jest": "^22.0.4",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "~2.6.1",
"typesync": "^0.2.5",
"updtr": "^2.0.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"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"
]
}
}