-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.96 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
{
"name": "aida",
"version": "0.0.1",
"private": true,
"description": "Unified data modeling",
"repository": "https://github.com/sradevski/aida",
"author": "Stevche Radevski <[email protected]>",
"license": "MIT",
"scripts": {
"test": " jest --ci",
"test:update": "jest -u",
"test:watch": "jest --watch -u",
"test:coverage": "jest --coverage",
"audit": "npm audit",
"lint": "eslint packages --fix",
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"publish": "lerna run build && npm run test && lerna publish",
"outdated": "lerna exec --no-bail -- npm outdated",
"update": "lerna exec --no-bail -- npm update --no-package-lock && lerna bootstrap",
"install": "lerna exec --no-bail -- npm install --no-package-lock && lerna bootstrap"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,mjs,jsx,css}": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testURL": "http://localhost:4000",
"testMatch": [
"**/?(*.)(unit|test).?(m)js?(x)"
],
"moduleFileExtensions": [
"js",
"json",
"mjs",
"node"
],
"collectCoverageFrom": [
"**/packages/**/*.js",
"!**/coverage/**",
"!**/dist/**",
"!**/output/**",
"!**/cli/**",
"!**/__mocks__/**",
"!**/__tests__/**",
"!e2e/**"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^5.8.0",
"eslint-plugin-flowtype": "^3.1.4",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lerna": "^3.10.7",
"lint-staged": "^8.0.3",
"nodemon": "^1.18.5",
"prettier": "^1.14.3"
},
"dependencies": {
"lodash": "^4.17.11"
}
}