-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.01 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@vishnucss/vishnu",
"filename": "vishnu.min.css",
"version": "1.3.3",
"description": "A simple and minimalist toolkit with modern css",
"main": "./packages/vishnucss/dist/vishnu.min.css",
"workspaces": [
"packages/*"
],
"keywords": [
"bootstrap",
"cssnext",
"css3",
"flexbox",
"toolkit",
"front-end",
"css-framework",
"postcss",
"responsive",
"monorepo",
"turborepo",
"mobile",
"mobile-first"
],
"ignore": [
".editorconfig",
".gitignore",
"package.json"
],
"resolutions": {
"graceful-fs": "^4.2.4"
},
"scripts": {
"build": "turbo run build",
"initialize": "lerna init",
"bootstrap": "lerna bootstrap",
"release": "lerna version",
"diff": "lerna diff",
"publish": "lerna publish",
"changed": "lerna changed",
"dev": "turbo run dev --no-cache --parallel --continue",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/src/*.{ts,tsx,css}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vishnucss/vishnu.git"
},
"author": "Allan Alexandre",
"license": "MIT",
"bugs": {
"url": "https://github.com/vishnucss/vishnucss/issues"
},
"homepage": "https://vishnucss.github.io",
"autoupdate": {
"source": "git",
"target": "git://github.com/vishnucss/vishnu.git",
"basePath": "dist",
"files": [
"vishnu.min.css",
"vishnu.css"
]
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"devDependencies": {
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"turbo": "^1.0.25"
},
"turbo": {
"baseBranch": "origin/master",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist"
]
},
"test": {
"dependsOn": [
"^build"
],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
}
}