forked from testdouble/test-smells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 976 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
{
"name": "test-smells",
"private": true,
"version": "0.0.1",
"description": "Some example test smells",
"main": "support/.not-a-requireable-module.js",
"scripts": {
"test": "teenytest --helper support/helper.js \"smells/**/*.js\" ",
"test:one": "teenytest --helper support/helper.js",
"style": "standard",
"ci": "npm run test && npm run style"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testdouble/smells.git"
},
"author": "Justin Searls <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/testdouble/smells/issues"
},
"homepage": "https://github.com/testdouble/smells#readme",
"devDependencies": {
"standard": "^7.0.1",
"teenytest": "^4.0.0",
"assert": "^1.3.0",
"testdouble": "^1.4.2"
},
"dependencies": {
"lodash": "^4.12.0",
"stringify-object-with-one-liners": "^1.0.0"
},
"standard": {
"globals": [
"assert"
]
}
}