-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "@skull-css/base",
"version": "1.0.3",
"description": "Yet Another CSS Library, but Modern 🤘",
"main": "src/skull.css",
"scripts": {
"test": "npm run stylelint:test && npm run cypress:run",
"stylelint:test": "stylelint \"**/*.css\"",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:update": "CYPRESS_updateSnapshots=true cypress run",
"start": "http-server src -c-1",
"build": "rm -rf dist && cp -r src dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j-san/skull.git"
},
"keywords": [
"css",
"style",
"ui"
],
"author": "Jonathan Sanchez",
"license": "ISC",
"bugs": {
"url": "https://github.com/j-san/skull/issues"
},
"homepage": "https://github.com/j-san/skull#readme",
"devDependencies": {
"cypress": "^7.2.0",
"cypress-image-snapshot": "^4.0.1",
"http-server": "^0.12.3",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0"
},
"dependencies": {}
}