forked from browserify/commonjs-assert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "@gjsify/assert",
"version": "0.0.1",
"description": "The assert module from Node.js, for Gjs",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"files": [
"lib"
],
"license": "MIT",
"homepage": "https://github.com/browserify/commonjs-assert",
"repository": "browserify/commonjs-assert",
"scripts": {
"clear": "rm -rf lib",
"print:name": "echo '@gjsify/assert'",
"build": "yarn print:name && gjsify build --library src/**/*.{ts,js}",
"build:test": "yarn run build:test:gjs && yarn run build:test:node",
"build:test:gjs": "gjsify build src/test.mts --app gjs --outfile test.gjs.mjs",
"build:test:node": "gjsify build src/test.mts --app node --outfile test.node.mjs",
"test": "yarn run print:name && yarn run build && yarn run build:test && yarn run test:node && yarn run test:gjs",
"test:gjs": "gjs -m test.gjs.mjs",
"test:node": "node test.node.mjs",
"git:upstream:init": "git remote add upstream https://github.com/browserify/commonjs-assert.git || exit 0",
"git:upstream:merge": "yarn git:upstream:init && git fetch upstream && git merge upstream/master"
},
"keywords": [
"assert",
"node",
"gjs"
],
"dependencies": {
"@gjsify/node-internal": "workspace:^"
},
"devDependencies": {
"@gjsify/cli": "workspace:^",
"@gjsify/unit": "workspace:^",
"@types/call-bind": "^1.0.1",
"@types/node": "^18.11.18",
"call-bind": "^1.0.2",
"util": "^0.12.5"
}
}