-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "sentro",
"version": "1.1.0",
"description": "A low-level SCSS library for building robust token-driven design systems at scale.",
"main": "packages/sentro/_index.scss",
"author": "Matteu",
"license": "MIT",
"files": [
"packages/sentro/*"
],
"keywords": [
"css",
"frontend",
"scss",
"scss-framework",
"design-tokens",
"design-system"
],
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/MatteuSan/sentro.git"
},
"bugs": {
"url": "https://github.com/MatteuSan/sentro/issues"
},
"publishConfig": {
"access": "restricted"
},
"homepage": "https://github.com/MatteuSan/sentro#readme",
"scripts": {
"build:sass": "yarn && gulp --gulpfile=\"gulpfile.ts\"",
"test:sass": "yarn && jest --config=\"jest.config.ts\"",
"pub:major": "npm version major --force && cd packages/sentro && npm version major --force && npm publish",
"pub:minor": "npm version minor --force && cd packages/sentro && npm version minor --force && npm publish",
"pub:patch": "npm version patch --force && cd packages/sentro && npm version patch --force && npm publish"
},
"devDependencies": {
"@matteusan/sentro": "file:./packages/sentro",
"@types/jest": "^29.5.12",
"gulp": "^5.0.0",
"gulp-sass": "^5.1.0",
"jest": "^29.7.0",
"sass": "^1.76.0",
"sass-true": "^8.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}