-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 958 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
{
"name": "version-sort",
"version": "0.1.1",
"description": "Sort an array of versions.",
"main": "index.js",
"scripts": {
"test": "npx mocha --reporter spec",
"test-coverage": "npx nyc --reporter=lcov npm run test",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/quentinrossetti/version-sort.git"
},
"keywords": [
"node",
"version",
"sort"
],
"author": [
"Quentin Rossetti <quentin.rossetti@gmail.com>",
"Théo Tourniaire"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/quentinrossetti/version-sort/issues"
},
"homepage": "https://github.com/quentinrossetti/version-sort",
"dependencies": {
"lodash": "^4.17.11",
"snyk": "^1.316.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"standard": "^12.0.1"
},
"snyk": true
}