-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.73 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
{
"name": "provio",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start:file": "npx babel-node --extensions \".ts\"",
"start": "npx babel-node src/index.ts --extensions \".ts\"",
"start:watch": "npx nodemon --exec \"npm run start\"",
"build": "rm -rf dist && npx babel src --extensions \".ts\" --out-dir dist --source-maps",
"test:file": "export BABEL_DISABLE_CACHE=true && npx mocha --require \"babelRegister.js\"",
"test": "npx mocha --require \"./babelRegister.js\" \"./src/**/*.spec.ts\"",
"test:watch": "npx nodemon --exec \"npm test || true\"",
"lint": "npx eslint src/ --ext .ts",
"jsdoc": "npx jsdoc -c jsdoc.js",
"check-types": "npx tsc --watch"
},
"keywords": [],
"author": "",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-private-methods": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.5.5",
"babel-eslint": "^11.0.0-beta.0",
"babel-plugin-macros": "^2.6.1",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^6.3.0",
"husky": "^3.0.5",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"typedoc": "^0.15.0",
"typescript": "^3.6.2"
}
}