-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.25 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
40
41
42
43
44
45
46
47
48
{
"name": "unit.js",
"version": "2.1.1",
"description": "Simple, intuitive and flexible unit testing framework for javascript / Node.js (browser and server). Integrates awesome assertions libraries like Must.js, Should.js, Assert of Node.js, Sinon.js and other friendly features (promise, IoC, plugins, ...).",
"main": "src/index.js",
"keywords": [
"test",
"spec",
"tdd",
"bdd",
"framework",
"assertion",
"asserter"
],
"author": {
"name": "Nicolas Tallefourtane",
"url": "https://nicolab.net"
},
"homepage": "https://unitjs.com",
"repository": {
"type": "git",
"url": "git://github.com/unitjs/unit.js.git"
},
"bugs": "https://github.com/unitjs/unit.js/issues",
"dependencies": {
"bluebird": "^3.7.1",
"lodash": "^4.17.15",
"must": "^0.13.4",
"noder.io": ">= 1.0.0 < 2.0.0",
"should": "^13.2.3",
"sinon": "^7.5.0",
"sinon-test": "^2.4.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-replace": "^0.5.3",
"gulp-uglify": "^1.2.0",
"mocha": "^5.2.0",
"spawn-rmrf": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.0",
"webpack-stream": "^5.2.1"
},
"scripts": {
"test": "npx mocha test"
}
}