-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "emmet-atom-plugin",
"version": "0.0.1",
"description": "Experimental Atom plugin for new Emmet",
"engines": {
"atom": ">=1.14.0 <2.0.0"
},
"main": "index.js",
"scripts": {
"test": "npm run eslint && apm test",
"build": "rollup -c",
"watch": "rollup -wc",
"eslint": "eslint --quiet ./lib ./spec ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/atom-plugin.git"
},
"keywords": [],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emmetio/atom-plugin/issues"
},
"homepage": "https://github.com/emmetio/atom-plugin#readme",
"dependencies": {
"@emmetio/css-parser": "^0.3.0",
"@emmetio/css-snippets-resolver": "^0.2.5",
"@emmetio/expand-abbreviation": "^0.5.4",
"@emmetio/extract-abbreviation": "^0.1.1",
"@emmetio/html-matcher": "^0.3.1",
"@emmetio/math-expression": "^0.1.1",
"@emmetio/stream-reader": "^2.1.1",
"@emmetio/stream-reader-utils": "^0.1.0",
"image-size": "^0.5.2"
},
"styles": [
"./styles/emmet.less"
],
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getAutocomplete"
}
}
},
"devDependencies": {
"eslint": "^4.10.0",
"rollup": "^0.50.0",
"rollup-watch": "^4.3.1"
}
}