-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "@gofynd/flick",
"version": "1.1.0",
"description": "sdk for data pipeline",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc --build --force tsconfig.json",
"test": "nyc --exclude ./src,./scratch,./node_modules,./spec,./config,./test,./index.js,./init.js,./newrelic.js,./shim.js --reporter=json-summary mocha test/**/*.js --reporter spec --timeout 10000 --exit",
"start": "ts-node index.ts",
"build:rollup": "npm run build && rollup -c"
},
"dependencies": {
"@gofynd/fp-signature": "^1.0.1",
"@types/es6-promise": "^3.3.0",
"@types/ua-parser-js": "0.7.36",
"@types/uuid": "9.0.1",
"axios": "^1.6.7",
"query-string": "^7.1.3",
"ua-parser-js": "^1.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.4",
"@types/query-string": "^6.3.0",
"@types/sinon": "^10.0.13",
"@types/uuid": "^9.0.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rollup": "^4.22.4",
"rollup-plugin-typescript2": "^0.36.0",
"sinon": "^9.2.4",
"typescript": "^4.9.5"
},
"author": "Nikhil Kakade",
"license": "ISC",
"files": [
"dist"
]
}