-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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
{
"name": "trello-checklists",
"private": true,
"version": "0.0.0",
"description": "Chrome Plugin for Trello Checklists",
"repository": "https://github.com/injulkarnilesh/trello-checklists",
"license": "MIT",
"dependencies": {
"angular": "1.7.5",
"angular-animate": "1.7.5",
"angular-aria": "1.7.5",
"angular-loader": "1.7.5",
"angular-material": "1.1.18",
"angular-material-icons": "0.7.1",
"angular-messages": "1.7.5",
"angular-route": "1.7.5",
"html5-boilerplate": "0.0.1",
"jquery": "3.4.1",
"ng-material-datetimepicker": "1.18.5"
},
"devDependencies": {
"angular-mocks": "1.7.5",
"cpx": "1.5.0",
"http-server": "0.11.1",
"jasmine-core": "3.3.0",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "2.0.0"
},
"scripts": {
"update-deps": "npm update",
"copy-libs": "cpx \"node_modules/{angular,bootstrap,jquery,ng-*,moment*,angular-*,html5-boilerplate/dist}/**/*\" app/lib -C",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1 ./app",
"pretest": "npm run copy-libs",
"test": "karma start karma.conf.js",
"test-single-run": "npm test -- --single-run",
"build": "npm run copy-libs && npm run test-single-run && rm -r node_modules"
}
}