-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1009 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1009 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
{
"name": "string-format-js",
"version": "1.0.0",
"description": "String format function for javascript",
"main": "format.js",
"keywords": [
"string",
"format"
],
"scripts": {
"test": "grunt mochaTest",
"browserTest": "grunt browserTest",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "tmaeda1981jp",
"homepage": "https://github.com/tmaeda1981jp/string-format-js",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.15",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^0.4.6",
"grunt-mocha-phantomjs": "^3.0.0",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.4.5",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.0.2"
},
"repository": "git@github.com:tmaeda1981jp/string-format-js.git"
}