-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
41 lines (41 loc) · 956 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
{
"name": "scratch-pad",
"version": "0.0.1",
"private": true,
"description": "A javascript playground",
"main": "app.js",
"scripts": {
"pretest": "npm install",
"test": "mocha ./test || :",
"posttest": "rm -rf ./test ./node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/OperationSpark/scratch-pad.git"
},
"keywords": [
"lodown",
"functional",
"programming",
"tdd",
"mocha",
"chai",
"istanbul"
],
"author": "jfraboni",
"license": "MIT",
"bugs": {
"url": "https://github.com/OperationSpark/scratch-pad/issues"
},
"homepage": "https://github.com/OperationSpark/scratch-pad#readme",
"devDependencies": {
"chai": "^3.4.1",
"i": "^0.3.4",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"dependencies": {
"lodash": "^4.4.0"
}
}