forked from alex-aaron/matchy-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 832 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
{
"name": "matchy",
"version": "1.0.0",
"private": true,
"description": "An exercise in creating and accessing data structures",
"main": "data.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm install",
"test": "mocha ./test/index.spec.js || :",
"posttest": "rm -rf ./test ./node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/OperationSpark/matchy.git"
},
"author": "jfraboni",
"license": "CC",
"bugs": {
"url": "https://github.com/OperationSpark/matchy/issues"
},
"homepage": "https://github.com/OperationSpark/matchy",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^3.4.1",
"sinon": "^2.2.0"
}
}