-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "postcss-apply",
"version": "0.12.0",
"description": "PostCSS plugin enabling custom properties sets references",
"keywords": [
"css",
"apply",
"postcss",
"postcss-plugin"
],
"author": {
"name": "Pascal Duez",
"url": "https://github.com/pascalduez"
},
"homepage": "https://github.com/pascalduez/postcss-apply",
"bugs": "https://github.com/pascalduez/postcss-apply/issues",
"repository": {
"type": "git",
"url": "git://github.com/pascalduez/postcss-apply.git"
},
"license": "Unlicense",
"files": [
"dist",
"CHANGELOG.md",
"index.js",
"README.md",
"UNLICENSE"
],
"main": "dist/index.js",
"module": "dist/index.m.js",
"scripts": {
"lint": "eslint src/ test/",
"validate": "run-s lint",
"test": "jest",
"test:ci": "run-s validate test",
"develop": "babel-node develop/",
"prebuild": "rm -rf dist/",
"build": "rollup -c",
"prepare": "run-s build",
"prepublishOnly": "run-s validate test"
},
"dependencies": {
"balanced-match": "^2.0.0",
"postcss": "^7.0.14"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-do-expressions": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-eslint": "^10.1.0",
"common-tags": "^1.8.2",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"opn-cli": "^5.0.0",
"postcss-custom-properties": "10",
"postcss-reporter": "^7.0.5",
"prettier": "^2.5.1",
"rollup": "^2.69.1"
}
}