-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "@zk2/ffjavascript",
"description": "OAS fork of ffjavascript",
"version": "0.2.57",
"source": "src/main.js",
"main": "dist/main.umd.js",
"module": "dist/main.modern.module.js",
"unpkg": "dist/main.umd.js",
"types": "dist/main.d.ts",
"keywords": [
"microbundle",
"typescript"
],
"files": [
"dist/**.js*",
"dist/**/*.ts"
],
"scripts": {
"build": "microbundle --define PKG_VERSION=$npm_package_version",
"watch": "microbundle watch --define PKG_VERSION=$npm_package_version",
"test": "node --test test",
"lint": "prettier src test -c",
"format": "prettier src test --write",
"prepack": "rm -rf dist && npm run build",
"release": "npm run prepack && source .env && npx np"
},
"dependencies": {
"wasmbuilder": "0.0.16",
"wasmcurves": "0.2.0",
"web-worker": "^1.2.0"
},
"devDependencies": {
"microbundle": "^0.15.1",
"prettier": "^2.8.7"
},
"prettier": {
"singleQuote": true
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAssetStandards/oas-ffjavascript.git"
},
"author": "Open Asset Standards",
"bugs": {
"url": "https://github.com/OpenAssetStandards/oas-ffjavascript/issues"
},
"homepage": "https://github.com/OpenAssetStandards/oas-ffjavascript#readme"
}