-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 KB
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
{
"name": "sequence-node",
"description": "Node SDK for Sequence",
"version": "0.2.10",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"license": "MIT",
"author": {
"name": "Helson Taveras",
"email": "helson@sequence.so",
"url": "https://sequence.so"
},
"repository": {
"url": "https://github.com/sequence-so/sequence-node"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"prepublish": "npm run build",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' ts-mocha 'tests/*.ts'",
"test:watch": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' ts-mocha --watch 'tests/*.ts'",
"test:debug": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' ts-mocha --inspect-brk 'tests/*.ts'"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.17",
"@types/express": "^4.17.11",
"@types/md5": "^2.3.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@types/pify": "^5.0.0",
"@types/sinon": "^10.0.0",
"@types/uniqid": "^5.3.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"delay": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"mocha": "^8.3.2",
"pify": "^5.0.0",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"ts-sinon": "^2.0.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.2.4"
},
"dependencies": {
"@segment/loosely-validate-event": "^2.0.0",
"assert": "^2.0.0",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"component-type": "^1.2.1",
"join-component": "^1.1.0",
"md5": "^2.3.0",
"remove-trailing-slash": "^0.1.1",
"uniqid": "^5.3.0",
"url": "^0.11.0",
"uuid": "^8.3.2"
}
}