-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "string-packer",
"version": "1.0.3",
"description": "First-fit bin packing to turn a list into delimiter-separated strings",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel/register test/test.js",
"build": "babel src/ --out-file index.js",
"preversion": "npm run build && git add --force index.js && git commit -m 'ES5 build'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrjoelkemp/string-packer.git"
},
"keywords": [
"string",
"packing",
"efficient",
"delimiter",
"first",
"fit",
"bin",
"packing"
],
"author": "Joel Kemp <[email protected]> (http://www.mrjoelkemp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjoelkemp/string-packer/issues"
},
"homepage": "https://github.com/mrjoelkemp/string-packer#readme",
"devDependencies": {
"babel": "~5.8.23",
"mocha": "~2.3.3"
},
"dependencies": {
"debug": "~2.2.0"
}
}