-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.82 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
{
"name": "namespace.style",
"version": "0.0.16",
"description": "A zero-dependency CSS class composer, bringing structure + types to the intersection between HTML + CSS",
"main": "dist/nss.min.js",
"types": "dist/nss.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "npm run -s verify & npm run -s bundle & wait && npm run -s info",
"clean": "rm -r ./dist/* &>/dev/null || true ",
"bundle": "esbuild $( esbuild-config ) && gzip -kf9 dist/*.js",
"verify": "npm run type & npm run format",
"type": "tsc",
"test": "jest",
"lint": "eslint src/ test/",
"format": "eslint --fix src/ test/",
"repl": "node nss.repl.js",
"info": "cd dist && echo && for file in `ls`; do printf \"%-28s %10s\n\" \"dist/${file}#\" \"#$( ls -l $file | tr -s ' ' | cut -d' ' -f5 | awk '{print $1/1000}' )KB\" | tr ' ' '·' | tr '#' ' '; done && echo",
"update": "npx npm-check-updates -u && npm install",
"release": "git push private main && git push public main && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evnp/namespace.style.git"
},
"keywords": [
"css",
"html",
"typescript",
"javascript"
],
"author": "Evan Purcer",
"license": "MIT",
"bugs": {
"url": "https://github.com/evnp/namespace.style/issues"
},
"homepage": "https://github.com/evnp/namespace.style#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"esbuild": "0.14.11",
"esbuild-config": "1.0.1",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "25.3.2",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.4.5",
"prettier": "2.8.0",
"ts-jest": "27.1.2",
"typescript": "4.9.3"
}
}