-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.89 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.89 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@ngnjs/plugin",
"version": "1.0.0-alpha.10",
"description": "A plugin module for NGN.",
"main": "./src/index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"scripts": {
"test": "npm run test:node && npm run test:deno && npm run test:browser && npm run report:syntax && npm run report:size",
"start": "dev workspace",
"build": "dev build",
"test:node": "dev test -rt node tests/*.js",
"test:deno": "dev test -rt deno tests/*.js",
"test:browser": "dev test -rt browser tests/*.js",
"manually": "dev test -rt manual tests/*.js",
"report:syntax": "dev report syntax --pretty",
"report:size": "dev report size ./.dist/**/*.js ./.dist/**/*.js.map",
"report:compat": "dev report compatibility ./src/**/*.js",
"ci": "dev test --verbose --peer --mode ci -rt node tests/*.js && dev test --mode ci --peer false -rt deno tests/*.js && dev test --mode ci --peer false -rt browser tests/*.js"
},
"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"
}
],
"private": false,
"license": "MIT",
"homepage": "https://github.com/ngnjs/plugin",
"repository": {
"type": "git",
"url": "https://github.com/ngnjs/plugin.git"
},
"bugs": {
"url": "https://github.com/ngnjs/plugin/issues"
},
"dev": {
"mode": "source",
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"ci": {
"verbose": true,
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/plugin": "/app/.dist/plugin/index.js"
}
},
"source": {
"verbose": true,
"volume": [
"/Users/coreybutler/Documents/Workspace/OSS/js/@author.io/dev/image/runners/manual.js:/utility/test/run-manual.js",
"/Users/coreybutler/Documents/Workspace/OSS/js/@author.io/dev/image/app/test/utilities.js:/utility/test/utilities.js",
"../core/.dist/ngn:/node_modules/ngn",
"../core/src:/source/ngn"
],
"autoimport": [
"import ngn from 'ngn'"
],
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/plugin": "/app/.dist/plugin/index.js"
}
}
},
"devDependencies": {
"@author.io/dev": "^1.1.2",
"@ngnjs/plugin-debug": "^1.0.0-alpha"
},
"standard": {
"globals": [
"window",
"globalThis",
"global",
"MutationObserver",
"DOMParser",
"XMLHttpRequest",
"FormData",
"btoa",
"localStorage",
"Request",
"Response",
"Headers",
"fetch",
"Element",
"HTMLElement",
"NodeFilter"
]
},
"peerDependencies": {
"ngn": "^2.0.0-alpha.5"
},
"dependencies": {}
}