forked from conversant/pubcid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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": "pubcid",
"version": "1.3.2",
"description": "Publisher Common ID",
"scripts": {
"lint": "eslint src/**/*.js",
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"test": "npm run lint && karma start --single-run",
"test-bamboo": "npm run lint && npm run sauce",
"sauce": "karma start karma.saucelabs.js",
"bundle-report": "webpack-bundle-analyzer --port 4200 dist/stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/pycnvr/pubcid.js.git"
},
"keywords": [],
"author": "Paul Yang <pyang@conversantmedia.com>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"eslint": "^5.16.0",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.4.1",
"karma-bamboo-reporter": "^0.1.2",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.9.6"
},
"main": "dist/index.js",
"module": "src/index.js",
"publishConfig": {
"registry": "http://vault.cnvrmedia.net/nexus/content/repositories/npm-internal/"
}
}