-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "simple-sort",
"version": "0.1.2",
"description": "Straightforward collection of sorting methods and sort functions.",
"main": "./dist/main.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel src --out-dir dist",
"watch": "babel src --watch --out-dir dist",
"test": "mocha --compilers js:babel-register",
"generate-docs": "jsdoc src -r -d docs",
"generate-markdown-docs": "jsdoc2md ./src/main.js > ./docs/sorter.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rBurgett/simple-sort.git"
},
"keywords": [
"sort",
"sorting",
"locale",
"international"
],
"author": "Ryan Burgett<[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rBurgett/simple-sort/issues"
},
"homepage": "https://github.com/rBurgett/simple-sort#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint": "^3.1.1",
"jsdoc": "^3.4.0",
"mocha": "^2.5.3",
"should": "^10.0.0"
}
}