-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 903 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
36
{
"name": "indent-tree",
"version": "1.0.2",
"description": "Make an object tree out of an indented string",
"main": "index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "rollup src/index.js --file index.js --format cjs",
"pretest": "npm run build",
"test": "node test/run.js"
},
"keywords": [
"indent",
"tree",
"parse"
],
"author": "Quentin Engles <hollowdoor99@gmail.com> (https://hollowdoor.github.io/)",
"license": "MIT",
"devDependencies": {
"purdy": "^3.1.1",
"rollup": "^0.62.0"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/hollowdoor/indent-tree.git"
},
"bugs": {
"url": "https://github.com/hollowdoor/indent-tree/issues"
},
"homepage": "https://github.com/hollowdoor/indent-tree#readme"
}