-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.52 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
{
"name": "@mparticle/data-planning-node",
"version": "1.0.6",
"description": "A Node Interface for Data Planning",
"main": "dist/mparticle-data-planning.common.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src"
],
"repository": "https://github.com/mParticle/data-planning-node",
"scripts": {
"lint": "npm run gts:check",
"build": "npm run build:dts && npm run build:prod",
"build:dev": "ENVIRONMENT=dev rollup --config rollup.config.js",
"build:prod": "ENVIRONMENT=prod rollup --config rollup.config.js",
"build:dts": "tsc --emitDeclarationOnly",
"gts:check": "gts check",
"gts:clean": "gts clean",
"gts:compile": "tsc -p .",
"gts:fix": "gts fix",
"docs": "typedoc src/",
"coverage": "jest --config jest.ts.config.js --coverage",
"test": "npm run build && npm run test:ts && npm run test:js",
"test:ts": "jest --config jest.ts.config.js",
"test:ts:watch": "jest --config jest.ts.config.js --watchAll",
"test:ts:clear": "jest --config jest.ts.config.js --clearCache",
"test:js": "jest --config jest.js.config.js",
"test:js:watch": "jest --config jest.js.config.js --watchAll"
},
"keywords": [
"mparticle",
"analytics",
"cdp"
],
"pre-commit": [
"lint",
"test"
],
"test": "jest",
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@types/faker": "^4.1.7",
"@types/jest": "^24.0.22",
"@types/jest-expect-message": "^1.0.1",
"@types/mockdate": "^3.0.0",
"@types/node": "^18.7.11",
"deepmerge": "^4.2.2",
"faker": "^4.1.0",
"gts": "^1.1.2",
"jest": "^24.9.0",
"jest-expect-message": "^1.0.2",
"nock": "^13.2.9",
"pre-commit": "^1.2.2",
"rollup": "^2.78.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typedoc-default-themes": "git+https://[email protected]/mParticle/typedoc-default-themes.git#mp-custom",
"typescript": "^3.8.3"
},
"dependencies": {
"@mparticle/data-planning-models": "0.1.4",
"@mparticle/event-models": "^1.1.0-alpha.0",
"ajv": "^6.10.2",
"axios": "^0.19.0"
}
}