forked from mrahhal/css-theming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 987 Bytes
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
{
"name": "css-theming",
"version": "1.3.0",
"description": "A platform for CSS theming.",
"main": "dist/umd/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"start": "rollup -c rollup.config.es.js -w",
"build": "rollup -c rollup.config.es.js && rollup -c rollup.config.umd.js",
"lint": "tslint src/**/*.ts",
"lint:scss": "npx stylelint \"src/**/*.scss\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"css",
"theme",
"theming",
"scss",
"css-variables"
],
"author": "Mohammad Rahhal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrahhal/css-theming"
},
"files": [
"dist",
"src/scss"
],
"devDependencies": {
"@rollup/plugin-typescript": "^5.0.2",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"tslib": "^2.0.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
}
}