forked from mjackson/expect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "expect",
"version": "1.16.0",
"description": "Write better assertions",
"author": "Michael Jackson",
"license": "MIT",
"main": "lib",
"files": [
"lib",
"umd"
],
"scripts": {
"build": "node ./scripts/build.js",
"build-cjs": "babel ./modules -d lib --ignore '__tests__'",
"build-umd": "NODE_ENV=production webpack modules/index.js umd/expect.js",
"build-min": "NODE_ENV=production webpack -p modules/index.js umd/expect.min.js",
"lint": "eslint modules",
"test": "npm run lint && karma start",
"release": "node ./scripts/release.js",
"prepublish": "npm run build"
},
"dependencies": {
"is-equal": "^1.5.1",
"is-regex": "^1.0.3",
"object-inspect": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.5.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"gzip-size": "^3.0.0",
"karma": "^0.13.22",
"karma-browserstack-launcher": "^0.1.10",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"pretty-bytes": "^3.0.1",
"readline-sync": "^1.4.1",
"webpack": "^1.12.14"
},
"keywords": [
"expect",
"assert",
"test",
"spec"
],
"repository": {
"type": "git",
"url": "https://github.com/mjackson/expect.git"
},
"babel": {
"presets": [
"es2015"
]
}
}