This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "chai-bem",
"version": "1.4.1",
"description": "BEM assertions for chai",
"keywords": [
"chai",
"testing",
"bem"
],
"homepage": "https://github.com/mistadikay/chai-bem#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mistadikay/chai-bem.git"
},
"contributors": [
"Denis Koltsov <iam@mistadikay.com> (https://github.com/mistadikay)",
"Kir Belevich <kir@soulshine.in> (https://github.com/deepsweet)"
],
"main": "build/index.js",
"files": [
"build/",
"LICENSE"
],
"dependencies": {
"bem-naming": "^1.0.0",
"chai": "^3.5.0",
"lodash.iselement": "^4.1.1",
"lodash.isplainobject": "^4.0.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai-spies": "^0.7.1",
"coveralls": "^2.13.1",
"eslint": "^2.5.3",
"eslint-config-rebem": "^1.1.0",
"eslint-plugin-babel": "^3.1.0",
"husky": "^0.13.3",
"isparta-loader": "^2.0.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-clear-screen-reporter": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-webpack": "^2.0.3",
"mocha": "^3.3.0",
"rimraf": "^2.6.1",
"webpack": "^1.12.5",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"prebuild": "rimraf build/",
"build": "babel lib/ -d build/",
"dev": "npm run build -- -w",
"tdd": "npm run karma start test/karma.dev.js",
"lint": "eslint lib/ test/",
"prekarma": "rimraf coverage/",
"karma": "babel-node ./node_modules/.bin/karma",
"precoveralls": "npm run karma start test/karma.travis.js",
"coveralls": "coveralls < coverage/lcov.info",
"pretravis": "npm run lint",
"travis": "npm run coveralls",
"pretest": "npm run lint",
"test": "npm run karma start test/karma.build.js",
"prepush": "npm test",
"prepublish": "npm run build"
},
"bugs": {
"url": "https://github.com/mistadikay/chai-bem/issues"
},
"engines": {
"node": ">=0.12.0",
"npm": ">=2.7.0"
},
"license": "MIT"
}