forked from onflow/fcl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 946 Bytes
/
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
{
"name": "@onflow/types",
"version": "0.0.4",
"description": "Utilities to transform javascript values into Cadence understandable values",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
"homepage": "https://onflow.org",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onflow/flow-js-sdk.git"
},
"bugs": {
"url": "https://github.com/onflow/flow-js-sdk/issues"
},
"jest": {
"transform": {
".js": "jest-esm-transformer"
}
},
"devDependencies": {
"jest": "25.3.0",
"jest-esm-transformer": "1.0.0",
"microbundle": "0.12.0-next.8"
},
"source": "src/types.js",
"main": "dist/types.js",
"module": "dist/types.module.js",
"unpkg": "dist/types.umd.js",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"test": "jest",
"build": "microbundle",
"test:watch": "jest --watch",
"start": "microbundle watch"
}
}