-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "chainsort",
"version": "0.0.5",
"description": "A framework to chain together user-supplied, custom sorting algorithms to an array of objects",
"main": "dist/index.js",
"author": "Alex Pereira",
"license": "MIT",
"scripts": {
"dev": "babel src --watch --out-dir dist",
"build": "babel src --out-dir dist",
"lint": "eslint src/** test/**",
"test": "nyc mocha",
"test-nlc": "mocha"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sinon": "^9.0.0"
},
"dependencies": {
"@babel/runtime": "^7.12.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-a-pereira/chainsort.git"
},
"homepage": "https://github.com/alex-a-pereira/chainsort.git",
"bugs": {
"url": "https://github.com/alex-a-pereira/chainsort.git"
},
"keywords": [
"sorting",
"sort",
"sort object"
],
"files": [
"dist/"
]
}