-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.66 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": "assert-match",
"version": "1.1.1",
"description": "assert + matchers <3",
"main": "dst/index.js",
"scripts": {
"test": "npm run mocha && npm run karma",
"lint": "eslint src",
"mocha": " _mocha --require babel-register --recursive test",
"karma": "karma start",
"cover": "NODE_ENV=test nyc npm test",
"compile": "babel src --out-dir dst",
"check": "autochecker",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmdm/assert-match.git"
},
"keywords": [
"assert",
"matchers",
"match",
"isMatch",
"assert-match"
],
"author": "rmdm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmdm/assert-match/issues"
},
"homepage": "https://github.com/rmdm/assert-match#readme",
"devDependencies": {
"autochecker": "^0.9.2",
"babel-cli": "^6.24.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"eslint": "^3.19.0",
"karma": "^1.6.0",
"karma-browserify": "^5.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"sinon": "^2.1.0"
},
"dependencies": {
"assert": "^1.4.1",
"babel-runtime": "^6.23.0",
"es-to-primitive": "^1.1.1",
"lodash.merge": "^4.6.0"
},
"engines": {
"node": ">=0.10"
},
"files": [
"package.json",
"README.md",
"dst",
"LICENSE",
"CHANGELOG.md",
"matchers.js"
]
}