-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "@ngnjs/libdata",
"version": "1.0.0-alpha.4",
"description": "A plugin module for NGN.",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"type": "module",
"author": "Corey Butler",
"private": false,
"license": "MIT",
"homepage": "https://github.com/ngnjs/libdata",
"repository": {
"type": "git",
"url": "https://github.com/ngnjs/libdata.git"
},
"bugs": {
"url": "https://github.com/ngnjs/libdata/issues"
},
"peerDependencies": {
"@author.io/dev": "^1.0.15"
},
"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",
"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.\"",
"update": "npm update --save --save-dev --save-optional"
},
"dev": {
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"mode": "source",
"source": {
"alias": {
"@ngnjs/libdata": "/app/src/index.js"
}
}
},
"standard": {
"globals": [
"globalThis",
"window",
"global"
]
}
}