forked from SUI-Components/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.19 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
{
"name": "@s-ui/sui",
"version": "0.0.0",
"private": true,
"description": "Monorepo for SUI (Schibsted User Interface) packages.",
"keywords": [
"schibsted",
"monorepo",
"sui"
],
"scripts": {
"phoenix": "npx @s-ui/mono phoenix",
"phoenix:ci": "sui-mono phoenix --ci --no-root",
"co": "sui-mono commit",
"lint": "sui-lint js && sui-lint sass",
"test": "cross-env NODE_ENV=test npm run test:client && cross-env NODE_ENV=test npm run test:server",
"test:ci": "npm run test:server",
"test:client": "cross-env NODE_ENV=test sui-test browser -P \"packages/*/test/**/*Spec.js\" -I 'packages/*/test/server/*Spec.js'",
"test:client:watch": "npm run test:client -- --watch",
"test:server": "cross-env NODE_ENV=test & sui-test server -P \"./packages/*/\\!\\(browser\\)/server/*.js\"",
"test:server:watch": "npm run test:server -- --watch",
"wiki:pull": "git subtree pull --prefix=.wiki https://github.com/SUI-Components/sui.wiki.git master --squash",
"wiki:push": "git subtree push --prefix=.wiki https://github.com/SUI-Components/sui.wiki.git master",
"commitmsg": "validate-commit-msg",
"precommit": "sui-precommit run"
},
"devDependencies": {
"@babel/cli": "7.8.3",
"@s-ui/lint": "3",
"@s-ui/mono": "1",
"@s-ui/precommit": "2",
"@s-ui/test": "2",
"chai": "3.5.0",
"cross-env": "5.1.6",
"husky": "0.13.4",
"validate-commit-msg": "2.12.2"
},
"config": {
"sui-mono": {
"access": "public",
"packagesFolder": "./packages"
},
"validate-commit-msg": {
"types": "@s-ui/mono/src/types"
}
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"babel": {
"presets": [
"sui"
]
},
"author": "David Almeida <davidbarna@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/SUI-Components/sui.git"
},
"bugs": {
"url": "https://github.com/SUI-Components/sui/issues"
},
"homepage": "https://github.com/SUI-Components/sui/#readme",
"license": "MIT",
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}