-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "@grab-id/grab-id-client",
"version": "1.1.10",
"description": "JavaScript client SDK for GrabID",
"main": "dist/bundle.js",
"scripts": {
"lint": "eslint --fix .",
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"start": "http-server",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:grab/grabplatform-sdk-js.git"
},
"author": "Elliott Miller",
"contributors": [
"Michael Zhao"
],
"license": "MIT",
"dependencies": {
"crypto-js": "^3.1.9-1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.13",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"http-server": "^0.11.1",
"jest": "^24.8.0",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"files": [
"dist"
]
}