forked from project-serum/serum-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 926 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
{
"name": "@project-serum/tokens",
"version": "0.0.7",
"description": "Serum tokens",
"main": "dist/index.umd.js",
"module": "dist/index.es5.js",
"types": "dist/lib/src/index.d.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn build:node && yarn build:browser",
"build:node": "tsc -b && rollup -c rollup/rollup.config.ts",
"build:browser": "tsc -b && rollup -c rollup/rollup.config.browser.ts",
"coverage": "jest --coverage test",
"prepublishOnly": "yarn build"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"browser": {
"./dist/index.umd.js": "./dist/index.browser.umd.js",
"./dist/index.es5.js": "./dist/index.browser.es5.js"
}
}