This repository was archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "shineup",
"version": "1.0.3",
"description": "A simple and flexible css-in-js implementation for Svelte",
"main": "index.js",
"module": "index.js",
"scripts": {
"setup:test": "cd tests/browser && npm i",
"setup": "npm i && npm run setup:test",
"test": "jest --verbose",
"test:browser": "cd tests/browser && npm run dev",
"format": "prettier --write \"./**\"",
"lint": "eslint . && npm run format",
"lint:test": "eslint . && npm run format:test",
"format:test": "prettier --check \"./**\"",
"preversion": "npm run test && npm run lint:test",
"postversion": "git push && git push --tags && rm -rf build/temp && npm publish"
},
"keywords": [
"svelte",
"css-in-js",
"simple",
"flexible",
"css",
"js",
"shine"
],
"author": {
"url": "https://github.com/Vehmloewff",
"name": "Elijah Mooring"
},
"license": "MIT",
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-svelte3": "^2.7.3",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"prettier-plugin-svelte": "^0.7.0",
"svelte": "^3.12.1"
},
"homepage": "https://github.com/Vehmloewff/shineup#readme",
"repository": {
"type": "git",
"url": "https://github.com/Vehmloewff/shineup"
},
"dependencies": {
"css-in-js-utils": "^3.0.2",
"flat": "^5.0.0"
}
}