UNPKG

2.24 kBJSONView Raw
1{
2 "name": "chai-enzyme",
3 "version": "1.0.0-beta.1",
4 "description": "Chai.js assertions for enzyme",
5 "homepage": "https://github.com/producthunt/chai-enzyme",
6 "author": {
7 "name": "Veselin Todorov",
8 "email": "hi@vesln.com",
9 "url": "https://github.com/vesln"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/producthunt/chai-enzyme.git"
14 },
15 "bugs": {
16 "url": "https://github.com/producthunt/chai-enzyme/issues"
17 },
18 "main": "build/index.js",
19 "scripts": {
20 "prepublish": "npm run clean && npm run build",
21 "build": "babel src --out-dir build",
22 "clean": "rimraf build",
23 "test:lint": "standard --verbose | snazzy",
24 "test:unit": "cross-env NODE_ENV=test mocha test/**/*.test.js",
25 "test:watch": "npm run test:unit -- --watch",
26 "test": "npm run test:lint && npm run test:unit"
27 },
28 "peerDependencies": {
29 "chai": "^3.0.0 || ^4.0.0",
30 "cheerio": "0.19.x || 0.20.x || 0.22.x || ^1.0.0-0",
31 "enzyme": "^2.7.0 || ^3.0.0",
32 "react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
33 "react-dom": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
34 },
35 "keywords": [
36 "javascript",
37 "shallow rendering",
38 "shallowRender",
39 "test",
40 "reactjs",
41 "react",
42 "flux",
43 "testing",
44 "test utils",
45 "assertion helpers",
46 "tdd",
47 "mocha",
48 "chai",
49 "chaijs",
50 "enzyme"
51 ],
52 "license": "MIT",
53 "devDependencies": {
54 "babel-cli": "^6.5.1",
55 "babel-eslint": "^7.1.0",
56 "babel-preset-es2015": "^6.5.0",
57 "babel-preset-react": "^6.5.0",
58 "babel-register": "^6.5.2",
59 "chai": "^3.0.0 || ^4.0.0",
60 "cross-env": "^3.1.4",
61 "enzyme": "^2.7.0 || ^3.0.0",
62 "enzyme-adapter-react-15": "^1.0.0",
63 "jsdom": "^9.1.0",
64 "mocha": "^3.0.0",
65 "prop-types": "^15.5.7",
66 "react": "^15.6.2",
67 "react-dom": "^15.6.2",
68 "react-test-renderer": "^15.6.2",
69 "rimraf": "^2.5.0",
70 "snazzy": "^5.0.0",
71 "standard": "^8.1.0"
72 },
73 "standard": {
74 "parser": "babel-eslint",
75 "global": [
76 "describe",
77 "it",
78 "before",
79 "beforeEach",
80 "after",
81 "afterEach",
82 "React",
83 "expect",
84 "createTest",
85 "isEnzyme3"
86 ]
87 },
88 "dependencies": {
89 "html": "^1.0.0"
90 }
91}