forked from joaonuno/flat-to-nested-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 962 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
{
"name": "flat-to-nested",
"version": "1.0.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 && jscs index.js test/test.js",
"dist": "mkdir -p dist && browserify index.js -o dist/FlatToNested.js -s FlatToNested && uglifyjs dist/FlatToNested.js > dist/FlatToNested-min.js"
},
"devDependencies": {
"mocha": "2.1.0",
"chai": "2.1.0",
"jshint": "2.6.3",
"jscs": "1.11.3",
"browserify": "10.2.6",
"uglify-js": "2.4.23"
}
}