-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
94 lines (94 loc) · 2.7 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ngn",
"version": "2.0.0-alpha.14",
"description": "A JavaScript library for building systems and frameworks.",
"main": "./src/index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"directories": {
"lib": "src/lib"
},
"sideEffects": false,
"scripts": {
"start": "dev workspace",
"test": "npm run test:node && npm run test:deno && npm run test:browser && npm run report:syntax && npm run report:size",
"test:node": "dev test -rt node tests/*.js",
"test:node:sanity": "dev test -rt node tests/01-sanity.js",
"test:node:base": "dev test -rt node tests/02-base.js",
"test:node:relationships": "dev test -rt node tests/06-relationships.js",
"test:browser": "dev test -rt browser tests/*.js",
"test:browser:sanity": "dev test -rt browser tests/01-sanity.js",
"test:browser:base": "dev test -rt browser tests/02-base.js",
"test:deno": "dev test -rt deno tests/*.js",
"test:deno:sanity": "dev test -rt deno tests/01-sanity.js",
"manually": "dev test -rt manual tests/*.js",
"build": "dev build",
"report:syntax": "dev report syntax --pretty",
"report:size": "dev report size ./.dist/**/*.js ./.dist/**/*.js.map",
"report:compat": "dev report compatibility ./src/**/*.js",
"report:preview": "npm pack --dry-run && echo \"==============================\" && echo \"This report shows what will be published to the module registry. Pay attention to the tarball contents and assure no sensitive files will be published.\""
},
"dev": {
"ignorecircular": [
"src/internal.js"
],
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"alias": {
"ngn": "/app/.dist/ngn/index.js",
"ngn-debug": "/app/.dist/ngn-debug/index.js.map"
}
},
"type": "module",
"author": {
"name": "Corey Butler",
"url": "http://coreybutler.com"
},
"contributors": [
{
"name": "Ecor Ventures",
"url": "https://ecorventures.com"
},
{
"name": "Graham Butler",
"url": "http://grahambutler.com"
},
{
"name": "Kevin Moritz",
"url": "https://github.com/mayorbyrne"
},
{
"name": "TJ Loughry",
"url": "https://github.com/theteejers"
}
],
"private": false,
"license": "MIT",
"homepage": "https://ngn.js.org",
"repository": {
"type": "git",
"url": "https://github.com/ngnjs/ngn.git"
},
"bugs": {
"url": "https://github.com/ngnjs/ngn/issues"
},
"devDependencies": {
"@author.io/dev": "^1.1.5",
"ngn-debug": "^2.0.0"
},
"dependencies": {},
"standard": {
"globals": [
"globalThis",
"window",
"global",
"Deno"
]
}
}