-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "@symatem/core",
"version": "0.0.8",
"authors": [
"Alexander Meißner"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"description": "Symatem JS API",
"main": "./src/SymatemJS.mjs",
"type": "module",
"exports": {
".": "./src/SymatemJS.mjs",
"./blake2.wasm": "./src/blake2.wasm",
"./backend.wasm": "./src/backend.wasm"
},
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "node --unhandled-rejections=strict tests/Tests.mjs",
"docs": "documentation build ./src/SymatemJS.mjs -f html -o docs"
},
"bugs": {
"url": "https://github.com/Symatem/SymatemJS/issues"
},
"homepage": "https://github.com/Symatem/SymatemJS",
"repository": {
"type": "git",
"url": "https://github.com/Symatem/SymatemJS.git"
},
"dependencies": {},
"devDependencies": {
"documentation": "^13.1.0",
"snowpack": "^2.17.0"
},
"engines": {
"node": ">=14.15.0"
}
}