-
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) · 817 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 817 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": "printable-object",
"version": "1.1.1",
"description": "Stringifies objects, arrays and everything in between.",
"main": "lib/index.js",
"scripts": {
"test": "ava test --verbose",
"build": "./node_modules/.bin/babel --presets env -d lib src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fartek/PrintableObject.git"
},
"keywords": [
"stringify",
"object",
"printable",
"print",
"string"
],
"author": "Timotej Fartek",
"license": "MIT",
"bugs": {
"url": "https://github.com/fartek/PrintableObject/issues"
},
"homepage": "https://github.com/fartek/PrintableObject#readme",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.1.8"
}
}