-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 976 Bytes
/
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
{
"name": "autocomplete-tailwind",
"version": "0.0.1",
"description": "An autocompletion provider for the utility-first CSS framework Tailwind",
"license": "MIT",
"repository": "https://github.com/vinkla/autocomplete-tailwind",
"main": "./src/index",
"author": {
"name": "Vincent Klaiber",
"email": "[email protected]",
"url": "vinkla.com"
},
"engines": {
"atom": ">=1.30.0 <2.0.0"
},
"scripts": {
"build": "node src/build.js",
"test": "semistandard -v | snazzy && tape test/*.js | tap-spec"
},
"keywords": [
"autocomplete",
"css",
"tailwind",
"tailwindcss"
],
"dependencies": {
"tailwind-class-names": "^0.6.0",
"tailwindcss": "^0.7.4"
},
"devDependencies": {
"semistandard": "^13.0.1",
"snazzy": "^8.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.10.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
}
}