forked from csstools/postcss-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "@csstools/postcss-plugins",
"private": true,
"version": "1.0.0",
"description": "",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"engines": {
"node": "^12 || ^14 || >=16"
},
"workspaces": [
"packages/*",
"plugins/*",
"plugin-packs/*",
"cli/*",
"experimental/*"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@rollup/plugin-typescript": "^8.3.0",
"@stryker-mutator/core": "^5.4.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"eslint": "^8.6.0",
"rollup": "^2.62.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.4"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present && npm run lint:rollup-config",
"lint:rollup-config": "eslint ./rollup --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
"test": "npm run test --workspaces --if-present"
},
"volta": {
"node": "16.13.1",
"npm": "8.3.0"
}
}