-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 812 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 812 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
{
"name": "js-design-patterns",
"version": "1.0.1",
"description": "A collection of design pattern examples written in JavaScript.",
"scripts": {
"test": "jasmine-node ."
},
"repository": {
"type": "git",
"url": "https://github.com/gwtw/js-design-patterns.git"
},
"keywords": [
"design pattern",
"software engineering"
],
"author": "Daniel Imms (http://www.growingwiththeweb.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gwtw/js-design-patterns/issues"
},
"homepage": "https://github.com/gwtw/js-design-patterns",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-eslint": "^17.0.0",
"grunt-jasmine-node-coverage": "^0.4.1",
"grunt-jsdoc": "^1.0.0",
"jasmine-node": "^1.14.3",
"jasmine-reporters": ">=0.2.0 <2.0.0"
}
}