-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 794 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 794 Bytes
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
{
"name": "sort-o",
"version": "1.7.1",
"description": "Sort Object Keys",
"main": "build/sorto.js",
"types": "sort-o.d.ts",
"module": "src/index.js",
"author": "Pratish Shrestha <pratishshr@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack",
"test": "mocha --require babel-register",
"test:watch": "mocha --require babel-register --watch"
},
"keywords": [
"object-sort",
"sort",
"sort-keys"
],
"repository": {
"type": "git",
"url": "https://github.com/pratishshr/sort-o"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"webpack": "^3.8.1"
}
}