-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
79 lines (79 loc) · 3.09 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
75
76
77
78
79
{
"name": "perspective-tune",
"version": "0.0.1",
"description": "Tune is a Chrome Extension using the Perspective API",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:cs": "node fuse.content_script.js && cp src/content_script/styles.css dist/content_script/",
"build:bg": "node fuse.background.js",
"build:popup": "ng build && cp src/load_analytics.js dist/popup",
"build:popup:dist": "ng build --prod --build-optimizer && cp src/load_analytics.js dist/popup",
"build:customElements": "ng build --project customElements",
"build:customElements:dist": "ng build --project customElements --prod --build-optimizer --output-hashing none",
"icon": "cp src/assets/Tune-chromestore-icon-1x.png dist/",
"build:all": "npm run build:popup && npm run build:customElements && npm run build:bg && npm run build:cs && npm run icon",
"build:all:dist": "npm run build:popup:dist && npm run build:customElements:dist && npm run build:bg && npm run build:cs && npm run icon",
"build": "npm run build:all && node manifest_generate.js dev > dist/manifest.json",
"dist_test": "npm run build:all:dist && node manifest_generate.js prod-test > dist/manifest.json",
"dist": "npm run build:all:dist && node manifest_generate.js prod > dist/manifest.json",
"package": "rm -f dist.zip && npm run dist && zip -r dist.zip dist",
"test:ci": "ng test --watch=false",
"test": "ng test",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular-devkit/build-ng-packagr": "^0.6.8",
"@angular/animations": "^6.1.6",
"@angular/cdk": "^6.4.7",
"@angular/common": "^6.1.6",
"@angular/compiler": "^6.1.6",
"@angular/core": "^11.0.5",
"@angular/elements": "^6.1.6",
"@angular/forms": "^6.1.6",
"@angular/http": "^6.1.6",
"@angular/material": "^6.4.7",
"@angular/platform-browser": "^6.1.6",
"@angular/platform-browser-dynamic": "^6.1.6",
"@angular/router": "^6.1.6",
"@types/filesystem": "0.0.28",
"@types/tinycolor2": "^1.4.1",
"@webcomponents/custom-elements": "^1.1.2",
"bodymovin": "^4.13.0",
"concurrently": "^3.5.1",
"core-js": "^2.5.7",
"fs-extra": "^6.0.1",
"lodash.throttle": "^4.1.1",
"rxjs": "^6.2.1",
"sinon": "^6.0.1",
"sinon-chrome": "^2.3.2",
"tinygradient": "0.4.1",
"uuid": "^3.2.1",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.2",
"@angular/cli": "^15.1.4",
"@angular/compiler-cli": "^6.1.6",
"@angular/language-service": "^6.0.4",
"@types/google.analytics": "0.0.39",
"@types/jasmine": "^2.8.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "~4.2.1",
"fuse-box": "^3.6.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.4.2",
"rxjs-compat": "^6.2.1",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~2.7.2"
}
}