forked from RampNetwork/ramp-instant-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.23 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
{
"name": "@ramp-network/ramp-instant-sdk",
"version": "3.0.0",
"description": "SDK for Ramp Instant",
"keywords": [],
"main": "dist/ramp-instant-sdk.umd.js",
"module": "dist/ramp-instant-sdk.es5.js",
"typings": "dist/types/ramp-instant-sdk.d.ts",
"files": [
"dist"
],
"author": "Ramp Network <[email protected]>",
"homepage": "https://ramp.network",
"repository": {
"type": "git",
"url": "https://github.com/RampNetwork/ramp-instant-sdk/"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage --env=jsdom",
"test:watch": "jest --coverage --watch --env=jsdom",
"test:prod": "npm run lint && npm run test -- --no-cache",
"precommit": "lint-staged",
"prepublish": "npm run build"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"prettier": {
"semi": true,
"singleQuote": true
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"cross-env": "^7.0.3",
"husky": "^1.0.1",
"jest": "^27.4.4",
"jest-config": "^27.4.4",
"lint-staged": "^12.1.2",
"lodash.camelcase": "^4.3.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.61.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^5.0.0",
"typescript": "4.5.3"
},
"dependencies": {
"body-scroll-lock": "^3.1.5"
}
}