-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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
{
"name": "flat-to-nested",
"version": "1.1.2",
"description": "Convert a hierarchy from flat to nested representation.",
"keywords": [
"tree",
"hierarchy",
"flat",
"nested",
"transform",
"parent",
"child"
],
"homepage": "https://github.com/joaonuno/flat-to-nested-js",
"repository": {
"type": "git",
"url": "git://github.com/joaonuno/flat-to-nested-js.git"
},
"license": "MIT",
"author": "João Nuno Silva <jnss81@gmail.com> (http://jnuno.com)",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "jshint index.js test/test.js && eslint index.js test/test.js && npm run dtslint",
"dist": "mkdir -p dist && browserify index.js -o dist/FlatToNested.js -s FlatToNested && uglifyjs dist/FlatToNested.js > dist/FlatToNested-min.js",
"dtslint": "dtslint types"
},
"devDependencies": {
"browserify": "*",
"chai": "*",
"dtslint": "*",
"eslint": "*",
"jshint": "*",
"mocha": "*",
"typescript": "*",
"uglify-js": "*"
},
"types": "types"
}