-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "string.ify",
"version": "1.0.64",
"description": "A small, simple yet powerful JavaScript object stringifier / pretty-printer",
"main": "build/string.ify",
"scripts": {
"lint": "eslint string.ify.js",
"lint-test": "eslint test.js",
"build": "npm run lint && npm run lint-test && npm run babel",
"test": "npm run build && env STRING_IFY_TEST_FILE='./build/string.ify' nyc --reporter=html --reporter=text mocha --reporter spec",
"autotest": "env STRING_IFY_TEST_FILE='./string.ify' mocha --reporter spec --watch",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"babel": "babel string.ify.js --source-maps inline --out-file ./build/string.ify.js"
},
"repository": {
"type": "git",
"url": "https://github.com/xpl/string.ify.git"
},
"keywords": [
"stringify",
"toString",
"pretty-print",
"object",
"string",
"object printer"
],
"author": "Vitaly Gordon <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/xpl/string.ify/issues"
},
"homepage": "https://github.com/xpl/string.ify",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2017-object-entries": "0.0.4",
"babel-preset-es2016": "^6.24.1",
"browserify": "^14.5.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"dependencies": {
"printable-characters": "^1.0.42",
"string.bullet": "^1.0.12"
}
}