-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "parsify-stocks",
"version": "1.0.1",
"description": "Parsify plugin for fetching stock data",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Jonas Lorenz <jonas@jonasdoesthings.com> (https://jonasdoesthings.com)",
"bugs": {
"url": "https://github.com/JonasDoesThings/parsify-stocks/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"esm": "tsc --module esnext && cpy dist/index.js dist --rename index.esm.js",
"cjs": "tsc --module commonjs",
"build": "npm run esm && npm run cjs",
"test": "xo && nyc ava",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"repository": "JonasDoesThings/parsify-stocks",
"homepage": "https://github.com/JonasDoesThings/parsify-stocks",
"keywords": [
"parsify",
"parsify-plugin",
"plugin",
"expression-parser",
"parser",
"expression"
],
"devDependencies": {
"@akepinski/tsconfig": "0.0.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"ava": "^3.8.2",
"coveralls": "^3.1.0",
"cpy-cli": "^3.1.1",
"del-cli": "^3.0.1",
"eslint-config-xo-typescript": "^0.29.0",
"nyc": "^15.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.3",
"xo": "^0.30.0"
},
"sideEffects": false,
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
]
},
"dependencies": {
"@parsify/core": "^0.2.1",
"@parsify/math": "^0.10.0",
"isomorphic-unfetch": "^3.1.0"
}
}