-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.17 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
72
73
74
75
76
{
"name": "@roundforest/import-map-to-policy",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": "./src/import-map-to-policy.js",
"main": "./src/import-map-to-policy.js",
"types": "./types/src/import-map-to-policy.d.ts",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"files": [
"src",
"types"
],
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"start": "serve src/",
"start:node": "node --experimental-policy=policy.json src/node-main.js",
"build": "concurrently -r 'npm:build:*'",
"build:typescript": "rm -rf types && tsc && cp src/*.d.ts types/src",
"test": "concurrently -r 'npm:test:*'",
"test:eslint": "eslint --color --max-warnings=0 '**/*.js'",
"test:typescript": "tsc --noEmit --emitDeclarationOnly false --pretty",
"test:mocha-parallel": "npm run mocha -- --parallel",
"mocha": "mocha --no-timeouts --exit --color 'test/*.test.js'"
},
"keywords": [
"javascript",
"nodejs"
],
"author": "Gil Tayar <giltayar@roundforest.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/roundforest/mono",
"directory": "packages/import-map-to-policy",
"type": "git"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-syntax-top-level-await": "^7.12.13",
"@bilt/cli": "^4.0.29",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"concurrently": "^6.0.2",
"eslint": "^7.24.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^5.0.0",
"fastify": "^3.14.2",
"fastify-static": "^4.0.1",
"mocha": "^8.3.2",
"p-retry": "^4.5.0",
"prettier": "^2.2.1",
"puppeteer": "^8.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/jsdom": "^16.2.10",
"jsdom": "^16.5.3",
"serve": "^11.3.2",
"uuid": "^8.3.2"
}
}