-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "privacy-manager-components",
"version": "1.0.2",
"description": "Web components for the Privacy Manager",
"main": "index.js",
"bin": {
"pm-components": "./bin/pm-components.js"
},
"scripts": {
"test": "npm run build:puppeteer && (http-server dist -p 3001 & mocha tests/puppeteer/*/*.js)",
"start": "npm run build:smoke:watch & http-server dist -p 3000",
"posttest": "kill $(lsof -t -i:3001)",
"build": "npm run clean && webpack --config webpack.config.js",
"build:puppeteer": "npm run clean && PPTR=1 webpack --config webpack.config.js",
"build:smoke": "npm run clean && SMOKE=1 webpack --config webpack.config.js",
"build:smoke:watch": "npm run clean && SMOKE=1 WATCH=1 webpack --config webpack.config.js",
"clean": "rm -r dist || true",
"start:dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Privacy-Managers/pm-components.git"
},
"author": "Manvel Saroyan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Privacy-Managers/pm-components/issues"
},
"homepage": "https://github.com/Privacy-Managers/pm-components#readme",
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"http-server": "^14.1.1",
"minimist": "^1.2.6",
"raw-loader": "^4.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"puppeteer": "^19.4.1",
"webpack-dev-server": "^4.11.1"
}
}