-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "@contentsquare/tag-sdk",
"version": "1.1.0",
"description": "ContentSquare tag SDK",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
"build": "rm -rf dist; tsc -b tsconfig.esm.json && tsc -b tsconfig.commonjs.json",
"test": "karma start ./karma.conf.js",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ContentSquare/tag-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ContentSquare/tag-sdk/issues"
},
"homepage": "https://github.com/ContentSquare/tag-sdk#readme",
"devDependencies": {
"@types/jasmine": "^4.3.5",
"jasmine-core": "^5.0.1",
"karma": "6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "^5.0.0",
"ts-loader": "9.4.4",
"webpack": "5.88.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"lerna": "^7.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
]
}