-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
80
81
82
{
"name": "javascript-unittest-examples",
"version": "2.0.0",
"description": "Examples of Javascript unit testing",
"main": " ",
"directories": {
"src": "app",
"test": "app"
},
"repository": {
"type": "git",
"url": "https://github.com/chriskevin/javascript-unittest-examples.git"
},
"keywords": [
"javascript",
"unit test",
"jasmine",
"angularjs"
],
"author": "Chris Sundberg",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/chriskevin/javascript-unittest-examples/issues"
},
"homepage": "https://github.com/chriskevin/javascript-unittest-examples",
"engines": {
"node": "6.0.0"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {
"angular": "1.8.0",
"angular-mocks": "1.7.8",
"core-js": "3.2.1",
"react": "16.9.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-loader": "8.0.6",
"babel-plugin-istanbul": "5.2.0",
"eslint": "6.2.2",
"eslint-config-google": "0.13.0",
"eslint-plugin-angular": "4.0.1",
"eslint-plugin-jasmine": "2.10.1",
"eslint-plugin-json": "1.4.0",
"faucet": "0.0.1",
"jasmine-core": "3.4.0",
"karma": "4.2.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.1",
"karma-firefox-launcher": "1.2.0",
"karma-jasmine": "2.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-safari-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-tap": "4.1.4",
"karma-tap-pretty-reporter": "4.1.0",
"karma-webpack": "4.0.2",
"npm-run-all": "4.1.5",
"plato": "1.7.0",
"rimraf": "3.0.0",
"tape": "4.11.0",
"updtr": "3.1.0",
"webpack": "4.39.2",
"webpack-dev-server": "3.8.0"
},
"scripts": {
"prebuild": "npm test && mkdir dist",
"build": "NODE_ENV=production webpack",
"postbuild": "cp -rf build/*.js dist",
"clean": "rimraf build/*.js coverage report",
"commit": "commit-wizard",
"lint:js": "eslint . --ext .js --ext .json --fix",
"start": "webpack-dev-server",
"stats:js": "plato -r -d report -t \"Code metrics\" -e .eslintrc app",
"test": "run-s lint:js test:karma",
"test:karma": "karma start config/karma.config.js",
"upgrade": "updtr"
}
}