-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "html-by-css",
"version": "1.1.0",
"description": "Generate html by writing css",
"main": "./dist/index.cjs",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && unbuild",
"clean": "rm -rf ./dist",
"test": "npm run build && mocha",
"prepublishOnly": "npm test",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/html-by-css.git"
},
"keywords": [
"html",
"css",
"generate",
"parse",
"nest",
"nesting"
],
"author": "Donnie D'Amato <fauxserious@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddamato/html-by-css/issues"
},
"homepage": "https://github.com/ddamato/html-by-css#readme",
"dependencies": {
"css-what": "^6.1.0",
"himalaya": "^1.1.0",
"postcss": "^8.4",
"postcss-nesting": "^11.2.1"
},
"devDependencies": {
"@projectwallace/css-analyzer": "^5.8.0",
"auto-changelog": "^2.4.0",
"chai": "^4.3.7",
"cheerio": "^1.0.0-rc.12",
"mocha": "^10.2.0",
"unbuild": "^1.1.2"
}
}