-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.39 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
{
"name": "@enhance/arc-plugin-styles",
"version": "5.0.6",
"description": "Plugin for generating enhance CSS utility classes",
"license": "Apache-2.0",
"author": "dam",
"homepage": "https://github.com/enhance-dev/arc-plugin-styles#readme",
"bugs": {
"url": "https://github.com/enhance-dev/arc-plugin-styles/issues"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./src/*": null,
"./get-styles": "./src/get-styles.js",
"./get-styles.js": "./src/get-styles.js"
},
"engines": {
"node": ">=14"
},
"files": [
"./src/*",
"LICENSE"
],
"scripts": {
"lint": "eslint src test --fix",
"test": "npm run lint && tape test/**/*.*js | tap-arc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enhance-dev/arc-plugin-styles.git"
},
"dependencies": {
"@architect/functions": "^8.0.4",
"@enhance/styles": "^6.4.0"
},
"devDependencies": {
"@architect/eslint-config": "^2.0.1",
"@architect/sandbox": "^5.4.1",
"eslint": "^8.28.0",
"tap-arc": "^0.3.5",
"tape": "^5.6.1",
"tiny-json-http": "^7.4.2"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"overrides": [
{
"files": [
"*.mjs"
],
"parserOptions": {
"sourceType": "module"
}
}
]
},
"keywords": [
"architect",
"enhance"
]
}