-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 972 Bytes
/
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
49
50
{
"name": "numgen",
"version": "0.1.1",
"description": "Creates objects that generate number sequences",
"main": "numgen.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/gamtiq/numgen.git"
},
"keywords": [
"number",
"sequence",
"generator"
],
"author": "Denis Sikuler",
"license": "MIT",
"bugs": {
"url": "https://github.com/gamtiq/numgen/issues"
},
"homepage": "https://github.com/gamtiq/numgen",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-jsdoc": "~0.6.7",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-uglify": "~0.9.1",
"grunt-umd": "~1.7.0",
"grunt-mocha-cli": "~1.13.0"
},
"jam": {
"main": "dist/numgen.js",
"include": [
"doc",
"dist",
"README.md"
]
},
"categories": [
"Data",
"Utilities"
],
"spm": {
"main": "numgen.js"
}
}