-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 KB
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
{
"name": "@gecks/when",
"version": "0.1.0",
"description": "Some TypeScript utilities for conditional control flow",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"np": {
"contents": "lib"
},
"scripts": {
"typecheck:source": "tsc --build src/tsconfig-check.json",
"typecheck:tests": "tsc --build test",
"compile": "babel src --out-dir lib --extensions \".ts\"",
"execute": "node lib/main.js",
"make": "npm run compile && npm run execute",
"full-run": "npm run typecheck:source && npm run make",
"test": "jest",
"build:types": "tsc --build src",
"ready": "npm run typecheck:tests && npm run build:types && npm run compile"
},
"repository": {
"url": "https://github.com/RWalkling/when"
},
"author": "Raphael Walkling",
"license": "ISC",
"dependencies": {
"typescript": "^3.5.3",
"@types/node": "^12.7.2",
"@gecks/funcy": "^0.1.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/cli": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"eslint": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"@types/jest": "^24.0.18",
"jest": "^24.9.0"
}
}