-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.25 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": "component-test-utils-master",
"version": "1.0.1-beta.0",
"private": true,
"description": "Test component the same way, regardless of the framework (React, Angular, Vue.JS, Vanilla, ...) ",
"main": "index.js",
"scripts": {
"install": "npm run lerna bootstrap && cd website && npm i",
"lerna": "lerna",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --ci --runInBand --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"tdd": "jest --watch",
"changelog": "gitmoji-changelog",
"doc": "cd website && npm run start",
"doc:build": "cd website && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FBerthelot/component-test-utils.git"
},
"keywords": [
"test",
"component",
"react",
"angular",
"vue",
"vuejs"
],
"author": "FBerthelot",
"license": "MIT",
"bugs": {
"url": "https://github.com/FBerthelot/component-test-utils/issues"
},
"homepage": "https://github.com/FBerthelot/component-test-utils#readme",
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-jest": "^25.3.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-space": "^0.25.0",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gitmoji-changelog": "^2.1.0",
"jest": "^25.3.0",
"lerna": "^3.20.2",
"ts-jest": "^26.0.0",
"typescript": "^3.8.3"
},
"greenkeeper": {
"commitMessages": {
"initialBadge": ":pencil: Add Greenkeeper badge",
"initialDependencies": ":arrow_up: Update dependencies",
"initialBranches": ":tada: Whitelist greenkeeper branches",
"dependencyUpdate": ":arrow_up: Update ${dependency} to version ${version}",
"devDependencyUpdate": ":arrow_up: Update ${dependency} to version ${version}",
"dependencyPin": ":pushpin: Pin ${dependency} to ${oldVersion}",
"devDependencyPin": ":pushpin: Pin ${dependency} to ${oldVersion}",
"lockfileUpdate": ":arrow_up: update lockfile ${lockfilePath}"
}
}
}