-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 957 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
{
"name": "testable-code",
"version": "0.0.9",
"description": "Example code for the talk \"How (Not) to Write Testable Code\" at WordCamp Nuremberg, 2016.",
"keywords": [
"code",
"es6",
"javascript",
"mockery",
"php",
"phpunit",
"sinon",
"tape",
"testable",
"testing",
"unit"
],
"homepage": "https://github.com/tfrommen/testable-code",
"bugs": "https://github.com/tfrommen/testable-code/issues",
"license": "MIT",
"author": {
"name": "Thorsten Frommen",
"email": "[email protected]",
"url": "https://tfrommen.de"
},
"repository": {
"type": "git",
"url": "https://github.com/tfrommen/testable-code"
},
"devDependencies": {
"babel-preset-es2015": "^6.0.0",
"babel-tape-runner": "^2.0.0",
"sinon": "^1.17.0",
"tape": "^4.6.0"
},
"scripts": {
"test": "babel-tape-runner js/**/*Test.js"
},
"babel": {
"presets": [
"es2015"
]
}
}