-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.49 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@ngnjs/crypto",
"version": "1.0.0-alpha.11",
"description": "A cryptography plugin for NGN",
"type": "module",
"main": "./src/index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"author": "Corey Butler",
"private": false,
"license": "MIT",
"homepage": "https://github.com/ngnjs/crypto",
"repository": {
"type": "git",
"url": "https://github.com/ngnjs/crypto.git"
},
"bugs": {
"url": "https://github.com/ngnjs/crypto/issues"
},
"devDependencies": {
"@author.io/dev": "^1.1.2",
"@ngnjs/libcrypto-debug": "^1.0.0-alpha.9",
"@ngnjs/plugin-debug": "^1.0.0-alpha"
},
"peerDependencies": {
"ngn": "^2.0.0-alpha.5",
"@ngnjs/libcrypto": "^1.0.0-alpha.9",
"@ngnjs/plugin": ">=1.0.0-alpha.8"
},
"dependencies": {},
"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",
"test:browser:sanity": "dev test -rt browser tests/*-sanity.js",
"test:deno:sanity": "dev test -rt deno tests/*-sanity.js",
"test:node:sanity": "dev test -rt node tests/*-sanity.js",
"test:browser:throttle": "dev test -rt browser tests/*-throttling.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",
"ci": "dev test --verbose --mode ci --peer -rt node tests/*.js && dev test --mode ci -rt deno tests/*.js && dev test --mode ci -rt browser tests/*.js",
"build:base": "dev build --mode ci"
},
"dev": {
"mode": "source",
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"ci": {
"verbose": true,
"peer": true,
"embed": [
"@ngnjs/plugin",
"@ngnjs/libcrypto"
],
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/plugin": "/node_modules/@ngnjs/plugin/index.js",
"@ngnjs/libcrypto": "/node_modules/@ngnjs/libcrypto/index.js",
"@ngnjs/crypto": "/app/.dist/crypto/index.js"
}
},
"source": {
"volume": [
"../core/.dist/ngn:/node_modules/ngn",
"../core/src:/source/ngn",
"../plugin/.dist/plugin:/node_modules/@ngnjs/plugin",
"../plugin/src:/source/@ngnjs/plugin",
"../libcrypto/.dist/crypto:/node_modules/@ngnjs/libcrypto",
"../libcrypto/src:/source/@ngnjs/libcrypto"
],
"buildoption": {
"preserveEntrySignatures": true
},
"autoimport": [
"import ngn from 'ngn'"
],
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/plugin": "/source/@ngnjs/plugin/index.js",
"@ngnjs/libcrypto": "/source/@ngnjs/libcrypto/index.js",
"@ngnjs/crypto": "/app/src/index.js"
}
}
},
"standard": {
"globals": [
"globalThis",
"window",
"global"
]
}
}