-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.76 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": "@langurama/type-check",
"version": "1.0.0-rc4",
"description": "Retardedly basic type checking for Node.js and the browser.",
"author": "Karl Morrison <karl@langurama.com>",
"license": "MIT",
"keywords": [
"langurama",
"runtime",
"type",
"check",
"checking",
"retard"
],
"repository": {
"type": "git",
"url": "git@github.com:langurama/type-check.git"
},
"main": "./dist/",
"scripts": {
"lint": "npx eslint .",
"lint_fix": "npx eslint . --fix",
"style": "npx prettier --check \"./**/*.js\" --check \"./**/*.json\"",
"style_fix": "npx prettier --write \"./**/*.js\" --write \"./**/*.json\"",
"type": "npx tsc",
"test": "npx jest --verbose --coverage --color",
"build": "npx babel ./src/ -d ./dist/ --source-maps",
"dev": "nodemon",
"start_es": "npm run build && npx babel-node -- ./example/ecmascript.js",
"start_cjs": "npm run build && node ./example/commonjs.js",
"check": "npm run lint && npm run style && npm test && npm run type && npm run build && npm pack",
"pk": "npm pack --verbose",
"bump": "npm install",
"tag": "VER=v$(node -p \"require('./package.json').version\") && git tag -a \"$VER\" -m \"$VER\"",
"pub": "git push --tags && npm publish --access public --verbose"
},
"engines": {
"node": "12"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/preset-env": "7.9.5",
"eslint": "6.3.0",
"jest": "24.9.0",
"nodemon": "1.19.2",
"prettier": "1.18.2",
"typescript": "3.8.3"
}
}