-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 962 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 962 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
{
"name": "arc-plugin-tailwindcss",
"version": "0.4.1",
"description": "TailwindCSS workflow integration for Architect",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run test:integration",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-spec"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/andybee/arc-plugin-tailwindcss.git"
},
"author": "Andy Buckingham <andy@andybee.com>",
"license": "Apache-2.0",
"files": [
"src/*"
],
"dependencies": {
"@architect/utils": "~3.1.0",
"tailwindcss": "^3.3.6"
},
"devDependencies": {
"@architect/architect": "^10.15.1",
"@architect/eslint-config": "^2.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"tap-spec": "^5.0.0",
"tape": "^5.7.2"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}