-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "@stackcrafters/common-serverless",
"description": "A package that provides serverless setup with babel",
"version": "1.2.14",
"main": "lib/index.js",
"files": [
"/lib",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/stackcrafters/common-serverless.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "restricted"
},
"license": "MIT",
"dependencies": {
"@stackcrafters/config-babel": "0.1.10"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint ./src --fix",
"type-check": "tsc --noEmit",
"update_deps": "npx npm-check-updates -u && npm install",
"build": "npm run clean && npm run lint && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel ./src -d ./lib --extensions \".js,.ts,.tsx\" --source-maps --ignore '**/*.test.js'",
"watch": "babel ./src -d ./lib --source-maps --watch --ignore '**/*.test.js'",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
}
}