-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "expect-element",
"version": "1.1.1",
"description": "Write better assertions for DOM nodes",
"repository": "mjackson/expect-element",
"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": "webpack modules/index.js umd/expect-element.js",
"build-min": "webpack -p modules/index.js umd/expect-element.min.js",
"lint": "eslint modules",
"test": "npm run lint && karma start",
"release": "node ./scripts/release.js",
"prepublish": "npm run build"
},
"peerDependencies": {
"expect": ">= 1.15.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.2.2",
"eslint-plugin-import": "^1.12.0",
"expect": "^1.20.2",
"gzip-size": "^3.0.0",
"karma": "^1.3.0",
"karma-browserstack-launcher": "^1.0.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.2",
"pretty-bytes": "^3.0.1",
"readline-sync": "^1.4.1",
"webpack": "^1.4.13"
},
"keywords": [
"expect",
"assert",
"test",
"spec",
"dom"
]
}