-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.31 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
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
{
"name": "@computablefacts/sdk-javascript",
"version": "3.2.3",
"description": "JavaScript SDK to access to ComputableFacts API",
"keywords": [
"sdk",
"javascript"
],
"author": "ComputableFacts",
"license": "MIT",
"homepage": "https://computablefacts.github.io/sdk-javascript/",
"repository": {
"type": "git",
"url": "git+https://github.com/computablefacts/sdk-javascript.git"
},
"bugs": "https://github.com/computablefacts/sdk-javascript/issues/new",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"DEVELOP.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm run dev",
"dev": "npx concurrently -k -n TSC,MOCHA,BUNDLE,DOC -c green,cyan,yellow,grey npm:build:ts:watch npm:test:watch:min npm:build:bundle:watch npm:build:doc:watch",
"dev2": "npx concurrently -k -n TSC,MOCHA,BUNDLE,DOC -c green,cyan,yellow,grey npm:build:ts:watch npm:build:bundle:watch npm:build:doc:watch",
"clean": "rm -rf dist",
"init": "mkdir dist",
"prebuild": "npm run clean && npm run init",
"build": "npm run build:ts && npm run build:bundle && npm run build:doc",
"build:all": "npm run build",
"build:ts": "tsc",
"build:ts:watch": "npm run build:ts -- --watch",
"build:bundle": "rollup --config",
"build:bundle:watch": "npm run build:bundle -- --watch",
"build:doc": "typedoc",
"build:doc:watch": "npm run build:doc -- --watch",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"CommonJS\" }' DEBUG=mocha:watch ts-mocha ./test/**/*.test.ts",
"test:watch": "npm run test -- --watch --extension ts",
"test:watch:min": "npm run test:watch -- --reporter min",
"test:coverage": "nyc npm test",
"lint": "eslint src/**/*.ts test/**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"chai": "^4.3.4",
"concurrently": "^6.2.0",
"core-js": "^3.16.0",
"eslint": "^7.32.0",
"mocha": "^9.0.3",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"rollup": "^2.56.0",
"rollup-plugin-terser": "^7.0.2",
"ts-mocha": "^8.0.0",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
},
"dependencies": {}
}