-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "@testingrequired/expect",
"version": "0.0.0",
"private": true,
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest",
"verify": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testingrequired/expect.git"
},
"keywords": [],
"author": "Kylee Tilley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/testingrequired/expect/issues"
},
"homepage": "https://github.com/testingrequired/expect#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"jest": "^26.0.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@babel/runtime": "^7.9.6"
}
}