-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 780 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 780 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": "arrayme",
"version": "1.0.3",
"description": "Transforms a value to an array",
"main": "index.js",
"scripts": {
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"postversion": "npm publish && git push && git push --tags",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabioricali/arrayme.git"
},
"keywords": [
"convert",
"array",
"toArray"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabioricali/arrayme/issues"
},
"homepage": "https://github.com/fabioricali/arrayme#readme",
"devDependencies": {
"bejs": "^1.14.0",
"mocha": "^4.0.1"
}
}