-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.41 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
{
"private": true,
"name": "regular-devtools",
"version": "0.9.3",
"description": "Regular Developer Tools is a Chrome Extension that allows real-time inspection of [Regular](http://regularjs.github.io/) components.",
"scripts": {
"build": "npm run build:devtools && npm run build:inject",
"build:devtools": "poi build --config scripts/devtools.config.js",
"build:inject": "poi build --config scripts/devtools.config.js",
"watch": "concurrently \"npm run watch:devtools\" \"npm run watch:inject\"",
"watch:devtools": "poi watch --config scripts/devtools.config.js",
"watch:inject": "poi watch --config scripts/inject.config.js",
"test": "npm run lint",
"lint": "eslint src --quiet",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": "eslint --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/regularjs/regular-devtools.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/regularjs/regular-devtools/issues"
},
"homepage": "https://github.com/regularjs/regular-devtools#readme",
"devDependencies": {
"bili": "^0.14.0",
"concurrently": "^3.3.0",
"eslint": "^3.2.2",
"eslint-config-google": "^0.6.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"material-design-lite": "^1.3.0",
"mitt": "^1.1.2",
"poi": "^9.3.5",
"regularjs": "0.5.2"
},
"dependencies": {}
}