-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 888 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 888 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
41
{
"name": "sparkcss",
"version": "1.4.0",
"main": "index.js",
"bin": {
"sparky": "./dist/cli/cli.js",
"spark-utils": "./dist/cli/sparkCli.js"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "jest",
"start": "ts-node src/cli/cli.ts",
"test:watch": "jest --watch",
"build": "rm -rf dist && tsc",
"build:styles": "sparky src/styles/input.spark -o dist/styles.css"
},
"files": [
"dist/",
"src/",
"bin/"
],
"keywords": [],
"author": "Nathaniel Paz (n8.jsx)",
"license": "MIT",
"description": "A custom css preprocessor",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"commander": "^12.1.0",
"css-tree": "^3.1.0",
"mdn-data": "^2.14.0"
}
}