-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 989 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 989 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
42
43
44
45
46
{
"name": "@bluecadet/postcss-do-math",
"version": "0.0.1",
"description": "PostCSS plugin to do math with mathjs",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"unit": "node --test index.test.js",
"test": "npm run unit && eslint .",
"dev": "tsc --watch --declarationMap --sourceMap",
"build": "tsc"
},
"author": "Shaun M Baer <shaun@bluecadet.com>",
"license": "MIT",
"repository": "bluecadet/postcss-do-math",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"postcss": "^8.4.27"
},
"devDependencies": {
"@types/mathjs": "^9.4.1",
"@types/node": "^24.10.0",
"eslint": "^8.47.0",
"postcss": "^8.5.6",
"typescript": "^5.9.3"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
]
},
"dependencies": {
"mathjs": "^15.1.0"
}
}