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

Commit e8024c8

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 100c1ad commit e8024c8

File tree

2 files changed

+122
-60
lines changed

2 files changed

+122
-60
lines changed

package-lock.json

Lines changed: 110 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
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-standard --lint",
1310
"test": "npm run lint && atom --test spec"
1411
},
1512
"dependencies": {
16-
"async": "~0.2.6",
17-
"atom-select-list": "^0.7.0",
18-
"fs-plus": "^3.0.0",
13+
"async": "^3.2.0",
14+
"atom-select-list": "^0.7.2",
15+
"fs-plus": "^3.1.1",
1916
"loophole": "^1",
2017
"pegjs": "~0.8.0",
2118
"scoped-property-store": "^0.17.0",
2219
"season": "^6.0.2",
23-
"temp": "~0.8.0",
24-
"underscore-plus": "^1.0.0"
20+
"underscore-plus": "^1.7.0"
21+
},
22+
"devDependencies": {
23+
"prettier-standard": "^16.4.1",
24+
"temp": "^0.9.1"
25+
},
26+
"engines": {
27+
"atom": "*"
2528
},
2629
"providedServices": {
2730
"snippets": {
@@ -30,8 +33,5 @@
3033
"0.1.0": "provideSnippets"
3134
}
3235
}
33-
},
34-
"devDependencies": {
35-
"prettier-standard": "^16.4.1"
3636
}
3737
}

0 commit comments

Comments
 (0)