-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
69 lines (69 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "expect",
"version": "1.20.2",
"description": "Write better assertions",
"repository": "mjackson/expect",
"author": "Michael Jackson",
"license": "MIT",
"main": "lib",
"files": [
"lib",
"umd"
],
"scripts": {
"build": "node ./scripts/build.js",
"prebuild-lib": "rimraf lib",
"build-lib": "babel ./modules -d lib --ignore '__tests__'",
"build-umd": "webpack modules/index.js umd/expect.js",
"build-min": "webpack -p modules/index.js umd/expect.min.js",
"lint": "eslint modules",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "npm run jest",
"jest": "jest",
"posttest": "npm run karma",
"karma": "karma start",
"release": "node ./scripts/release.js",
"prepublish": "safe-publish-latest && npm run build"
},
"dependencies": {
"define-properties": "~1.1.2",
"has": "^1.0.1",
"is-equal": "^1.5.5",
"is-regex": "^1.0.3",
"object-inspect": "^1.1.0",
"object-keys": "^1.0.9",
"tmatch": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.11.0",
"eslint-plugin-import": "^2.8.0",
"gzip-size": "^3.0.0",
"in-publish": "^2.0.0",
"jest": "^21.2.1",
"karma": "^1.7.1",
"karma-browserstack-launcher": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"mocha": "^3.5.3",
"pretty-bytes": "^4.0.2",
"readline-sync": "^1.4.7",
"rimraf": "^2.6.2",
"safe-publish-latest": "^1.1.1",
"webpack": "^1.15.0"
},
"keywords": [
"expect",
"assert",
"test",
"spec"
]
}