-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "chai-react-assertions",
"version": "0.2.1",
"description": "React assertion helpers for Chai",
"main": "lib/index.js",
"scripts": {
"test": "scripts/test.sh",
"unit": "mocha --compilers js:babel/register src/**/__tests__/*.js",
"watch-unit": "mocha --compilers js:babel/register --watch src/**/__tests__/*.js",
"build": "rm -rf lib/ && babel --out-dir lib/ src/",
"watch": "rm -rf lib/ && babel --watch --out-dir lib/ src/",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/momentumft/chai-react-assertions.git"
},
"keywords": [
"chai",
"react",
"reactjs"
],
"author": "Momentum Financial Technology Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/momentumft/chai-react-assertions/issues"
},
"homepage": "https://github.com/momentumft/chai-react-assertions#readme",
"devDependencies": {
"babel": "^5.8.29",
"babel-eslint": "^4.1.4",
"chai": "^3.4.1",
"eslint": "^1.8.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-react": "^3.8.0",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.3.3",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.2",
"react-dom": "^0.14.2"
},
"dependencies": {
"cheerio": "^0.19.0",
"ramda": "^0.18.0",
"skin-deep": "^0.12.0"
}
}