forked from BestFriendChris/autocomplete-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
{
"name": "atom-tailwindcss",
"version": "0.9.1",
"description": "An autocompletion provider for the utility-first CSS framework Tailwind",
"license": "MIT",
"repository": "https://github.com/bitmanic/atom-tailwindcss.git",
"bugs": {
"url": "https://github.com/bitmanic/atom-tailwindcss/pulls"
},
"main": "./src/index",
"author": {
"name": "Ray Brown",
"email": "[email protected]",
"url": "@raybrown.co"
},
"engines": {
"atom": ">=1.30.0 <2.0.0"
},
"scripts": {
"build": "node script/build.js",
"test": "semistandard -v | snazzy & apm test"
},
"keywords": [
"autocomplete",
"css",
"tailwind",
"tailwindcss"
],
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"json-stringify-pretty-compact": "^2.0.0",
"semistandard": "^14.0.1",
"snazzy": "^8.0.0",
"tailwindcss": "^2.2.7"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
},
"semistandard": {
"globals": [
"atom",
"beforeEach",
"describe",
"expect",
"it",
"runs",
"waitsForPromise"
]
}
}