-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
{
"name": "chai-json-pattern",
"version": "1.0.0",
"description": "Chai JSON pattern assertions",
"main": "dist/main.js",
"scripts": {
"prepublish": "npm run build",
"build-parser": "./node_modules/.bin/pegjs -o ./src/parser/parser.js ./src/parser/parser.pegjs",
"prebuild": "npm run build-parser",
"build": "babel src/ -d dist/",
"lint": "./node_modules/.bin/eslint src/",
"lint-fix": "eslint src/ --fix",
"pretest": "npm run build-parser",
"test": "mocha --compilers js:babel-core/register tests/*"
},
"author": {
"name": "Damian Szulc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damian-brainhub/chai-json-pattern.git"
},
"keywords": [
"array",
"chai",
"chai-plugin",
"chai-json",
"chai-deep-match",
"cucumber",
"deep",
"deep-eql",
"deep-match",
"integration",
"JSON",
"matching",
"mocha",
"test"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/damian-brainhub/chai-json-pattern/issues"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.25.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^2.1.2",
"eslint": "^3.14.1",
"eslint-config-brainhub": "^1.0.0",
"mocha": "^2.2.1",
"pegjs": "^0.10.0"
},
"dependencies": {
"lodash": "^4.17.4"
}
}