-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "monitor.js",
"version": "2.0.1",
"description": "performance monitor for browser runtime",
"keywords": [
"monitor"
],
"main": "./build/monitor.js",
"files": [
"build/**/*.js"
],
"repository": {
"type": "git",
"url": "git://github.com/pillowjs/monitor.js.git"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^4.1.5",
"cross-env": "^5.1.3",
"eslint": "^4.12.1",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "1",
"husky": "4",
"macaca-cli": "2",
"macaca-coverage": "1",
"macaca-electron": "7",
"macaca-reporter": "1",
"macaca-wd": "3",
"memory-stats-alt": "^1.1.0",
"webpack": "^4.10.0",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"dev": "webpack-dev-server",
"dev:test": "cross-env NODE_ENV=test webpack-dev-server",
"lint": "eslint --fix . test",
"serve": "npm run dev:test &",
"prepublish": "npm run build",
"contributor": "git-contributor",
"build": "cross-env NODE_ENV=production webpack -p",
"test": "macaca run -d ./test --reporter macaca-reporter",
"ci": "npm run lint && npm run serve && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}