package.json
1.42 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
44
45
46
47
48
49
{
"name": "yoho-apm-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"check": "tsc --noEmit",
"test": "karma start ./test/karma.conf.js",
"build": "tsc --noEmit && webpack --config ./build/webpack.config.js",
"build-test": "yarn run check && webpack --config ./build/webpack.config.js --mode development",
"examples": "http-server ./ -o -c-1",
"precommit": "tslint -p ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.1.5",
"@babel/runtime-corejs2": "^7.1.5",
"@types/jasmine": "^2.8.11",
"@types/node": "^10.12.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"eslint-config-alloy": "^1.4.2",
"eslint-config-yoho": "^1.1.0",
"eslint-plugin-typescript": "^0.14.0",
"http-server": "^0.11.1",
"jasmine": "^3.3.0",
"jasmine-core": "^3.3.0",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-webpack": "^3.0.5",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^21.0.1",
"webpack": "^4.19.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"debug": "^4.1.0",
"query-string": "^6.2.0",
"vue-json-viewer": "^2.0.2"
}
}