-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 974 Bytes
/
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
{
"name": "@pace/fsc-sdk",
"version": "1.0.0",
"description": "PACE Fueling Simulator Client SDK",
"main": "lib/index.js",
"license": "UNLICENSED",
"author": "pace",
"private": false,
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
"build": "yarn run build:types && yarn run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"typescript": "^3.7.2"
},
"publishConfig": {
"@pace:registry": "https://lab.jamit.de/api/v4/projects/996/packages/npm/"
}
}