-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "chai-jest-snapshot",
"version": "2.0.0",
"description": "Chai assertion that provides Jest's snapshot testing",
"main": "dist/index.js",
"repository": "https://github.com/suchipi/chai-jest-snapshot",
"scripts": {
"build": "rm -rf dist/* && babel src --out-dir dist",
"mocha": "mocha -r 'dist/spec/index' 'dist/spec/*.spec.js'",
"examples": "cd examples && npm test",
"example_1:watch": "npm run build && cd examples && npm run example_1:watch",
"example_2:watch": "npm run build && cd examples && npm run example_2:watch",
"example_3:watch": "npm run build && cd examples && npm run example_3:watch",
"example_4:watch": "npm run build && cd examples && npm run example_4:watch",
"test": "npm run build && npm run mocha && npm run examples"
},
"keywords": [
"mocha",
"chai",
"assertion",
"helper",
"jest",
"snapshot",
"react",
"test",
"spec",
"testing"
],
"author": "Lily Skye <[email protected]> (http://suchipi.com)",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.11.4",
"babel-plugin-transform-dirname-filename": "1.1.0",
"babel-plugin-transform-undefined-to-void": "^6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"chai": "3.5.0",
"mocha": "3.2.0",
"react": "15.3.0",
"rimraf": "2.5.4",
"sinon": "1.17.5",
"sinon-chai": "2.8.0"
},
"dependencies": {
"jest-snapshot": "21.2.1",
"lodash.values": "^4.3.0"
},
"peerDependencies": {
"chai": ">=1.9.0"
}
}