forked from testdouble/test-smells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 KB
/
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
{
"name": "test-smells",
"private": true,
"version": "0.0.1",
"description": "Some example test smells",
"main": "support/js/.not-a-requireable-module.js",
"scripts": {
"test": "teenytest --helper support/js/helper.js \"smells/**/*.js\" ",
"test:one": "teenytest --helper support/js/helper.js",
"style": "standard",
"ci": "cross-env CI=true 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": {
"core-assert": "^0.2.0",
"cross-env": "^5.0.5",
"standard": "^10.0.3",
"teenytest": "^5.0.0",
"testdouble": "^3.2.6"
},
"dependencies": {
"lodash": "^4.17.4",
"stringify-object-with-one-liners": "^1.0.0"
},
"standard": {
"globals": [
"assert"
]
}
}