Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit bca4e24

Browse files
committed
package: update deps and reorder package.json
Also moves `temp` to `devDependencies`, as it's only used by specs The reorder isn't necessary, but I feel it is cleaner
1 parent f2080fe commit bca4e24

File tree

2 files changed

+57
-58
lines changed

2 files changed

+57
-58
lines changed

package-lock.json

+45-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
{
22
"name": "snippets",
33
"version": "1.6.0",
4-
"main": "./lib/snippets",
54
"description": "Expand snippets matching the current prefix with `tab`.",
65
"repository": "https://github.com/atom/snippets",
76
"license": "MIT",
8-
"engines": {
9-
"atom": "*"
10-
},
7+
"main": "./lib/snippets",
118
"scripts": {
129
"lint": "prettier --check .",
1310
"lint:fix": "prettier --write .",
1411
"test": "npm run lint && atom --test spec"
1512
},
1613
"dependencies": {
17-
"async": "~0.2.6",
14+
"async": "^3.2.0",
1815
"atom-select-list": "^0.7.0",
19-
"fs-plus": "^3.0.0",
16+
"fs-plus": "^3.1.1",
2017
"loophole": "^1",
21-
"pegjs": "~0.8.0",
18+
"pegjs": "^0.8.0",
2219
"scoped-property-store": "^0.17.0",
2320
"season": "^6.0.2",
24-
"temp": "~0.8.0",
25-
"underscore-plus": "^1.0.0"
21+
"underscore-plus": "^1.7.0"
22+
},
23+
"devDependencies": {
24+
"prettier": "^2.1.2",
25+
"temp": "^0.9.1"
26+
},
27+
"engines": {
28+
"atom": "*"
2629
},
2730
"providedServices": {
2831
"snippets": {
@@ -31,8 +34,5 @@
3134
"0.1.0": "provideSnippets"
3235
}
3336
}
34-
},
35-
"devDependencies": {
36-
"prettier": "^2.1.2"
3737
}
3838
}

0 commit comments

Comments
 (0)