forked from SUI-Components/adevinta-spain-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.45 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
{
"name": "@adv-ui/react-components",
"version": "1.0.0",
"description": "Mono repo containing all Schibsted Spain React Components.",
"private": true,
"scripts": {
"build": "sui-studio build",
"co": "sui-studio commit",
"commitmsg": "validate-commit-msg",
"dev": "sui-studio dev",
"generate": "sui-studio generate -S s-ui",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "sui-lint js",
"lint:sass": "sui-lint sass",
"install:demos": "cd demo && sui-mono phoenix --ci",
"phoenix": "sui-mono phoenix && npm run install:demos",
"phoenix:ci": "sui-mono phoenix --no-root --ci && npm run install:demos -- --ci",
"update:commit:status": "npx @s-ui/ci@1 update-commit-status",
"start": "sui-studio start",
"test": "sui-studio test && npm run test:jest",
"test:jest": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/SUI-Components/adevinta-spain-components.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@s-ui/documentation-library": "1",
"@s-ui/lint": "3",
"@s-ui/precommit": "2",
"@s-ui/studio": "9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"husky": "4.3.0",
"jest": "24.9.0",
"validate-commit-msg": "2.14.0"
},
"dependencies": {
"@s-ui/component-dependencies": "1",
"@s-ui/mono": "1"
},
"config": {
"sui-studio": {
"logo": "<img width='50' src='https://camo.githubusercontent.com/60172890c1c8e95d3d0f51f09399a3504f89ef88/68747470733a2f2f7777772e61646576696e74612e636f6d2f77702d636f6e74656e742f7468656d65732f73636f6d2f6173736574732f696d672f41646576696e74612d6c6f676f2e737667' />",
"font": "https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i",
"name": "Adevinta Spain Components"
},
"sui-mono": {
"access": "public",
"packagesFolder": "components",
"deepLevel": 2
},
"validate-commit-msg": {
"types": "@s-ui/mono/src/types"
}
},
"commit-msg": [
"validate-commit-msg"
],
"babel": {
"presets": [
"sui"
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"husky": {
"hooks": {
"pre-commit": "sui-precommit run"
}
}
}