-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "jest-did-matcher",
"version": "0.0.1",
"description": "Jest matchers for Decentralized Identity (DID)",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"prepare": "babel src -d dist --ignore *.test.js",
"test": "jest"
},
"keywords": [
"jest",
"matchers",
"did"
],
"author": "Shigeya Suzuki",
"license": "",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.26.0",
"babel-jest": "^26.6.3",
"babel-jest-assertions": "^0.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"import-all.macro": "^2.0.3",
"jest": "^23.0.1",
"jest-each": "^0.5.0",
"jest-watch-typeahead": "^0.2.0"
},
"dependencies": {
"expect": "^26.6.2",
"jest-get-type": "^26.3.0",
"jest-matcher-utils": "^26.6.2"
},
"babel": {
"plugins": [
"babel-plugin-transform-es2015-modules-commonjs",
"transform-object-rest-spread",
"transform-async-to-generator",
"macros"
]
}
}