-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.92 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
{
"name": "frontend-toolkits",
"description": "Frontend Component Toolkits for the Elements Design System",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/springernature/frontend-toolkits.git"
},
"keywords": [
"frontend",
"fed",
"toolkits",
"elements",
"components",
"css",
"javascript",
"templates"
],
"author": "Springer Nature",
"scripts": {
"bootstrap": "npm run context && lerna bootstrap --hoist",
"bootstrap:local": "npm run context && lerna bootstrap --nohoist=** --no-ci",
"build": "npm run lint && npm run test && npm run validate",
"build:ci": "npm run lint && npm run test:ci && npm run validate -- -n",
"context": "sn-context-installer -p ./toolkits/",
"create": "sn-package-create",
"demo": "sn-package-demo",
"lint": "util-eslint-runner --name 'lint:js' --pattern 'toolkits/**/packages/**/*.js' && npm run lint:sass",
"lint:sass": "sass-lint 'toolkits/**/packages/**/scss/**/*.scss' --verbose --no-exit",
"lint:js": "eslint 'toolkits/**/packages/**/*.js'",
"node_modules:clean": "npx rimraf node_modules/",
"publish": "sn-package-publish",
"test": "jest --colors --coverage --passWithNoTests",
"test:ci": "jest --passWithNoTests --runInBand",
"validate": "sn-package-validate",
"validate:global": "sn-package-validate -t global",
"validate:nature": "sn-package-validate -t nature",
"validate:springer": "sn-package-validate -t springer",
"validate:springernature": "sn-package-validate -t springernature"
},
"bugs": {
"url": "https://github.com/springernature/frontend-toolkits/issues"
},
"homepage": "https://github.com/springernature/frontend-toolkits#readme",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.6.3",
"@springernature/eslint-config": "^4.0.1",
"@springernature/frontend-package-manager": "^9.0.0",
"@springernature/sasslint-config": "^1.2.1",
"@springernature/util-context-installer": "^0.3.0",
"@springernature/util-eslint-runner": "^0.0.3",
"eslint": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^13.0.0",
"jest": "^26.4.2",
"lerna": "^3.18.3",
"sass-lint": "^1.13.1"
},
"jest": {
"testURL": "http://localhost/",
"modulePaths": [
"<rootDir>/"
],
"verbose": true,
"testRegex": "__tests__/.*\\.js$",
"collectCoverageFrom": [
"**/packages/**/*.js"
],
"coveragePathIgnorePatterns": [
"docs/",
"demo/"
],
"restoreMocks": true,
"transformIgnorePatterns": [
"/node_modules/(?!(@springernature/global-context))/"
]
},
"sasslintConfig": "./.sass-lint.yml"
}