-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.27 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
{
"name": "weer-bundler",
"version": "0.0.0",
"description": "Error reporter for web extensions",
"repository": {
"type": "git",
"url": "https://github.com/error-reporter/weer"
},
"main": "./dist/cjs/",
"module": "./dist/esm/",
"scripts": {
"lint-src": "eslint ./src/**/*.js",
"lint-examples": "eslint ./examples --ignore-pattern node_modules --ignore-pattern dist",
"lint-root": "eslint ./*.js",
"lint-tests": "eslint test",
"lint": "npm run lint-src && npm run lint-root && npm run lint-examples && npm run lint-tests",
"preinstall": "cd ./src && npm install",
"postinstall": "npm run pack-debug",
"pack-debug": "cd ./node_modules/debug && make browser && cd - && cp ./node_modules/debug/dist/debug.js ./vendor/optional-debug.js",
"build": "shx rm -rf ./dist && rollup -c && shx cp ./src/package.json ./dist/. && shx cp ./API.md ./dist/README.md",
"start": "npm run build",
"__check": "flow status",
"__start-flow": "flow server",
"__forever-flow": "flow stop && forever start -c \"npm run start-flow\" ./",
"__start": "flow status && npm run build:dev",
"__prod": "flow status && npm run build:prod",
"test:unit": "echo $TEST_TARGET && karma start karma.conf.js",
"test:dev": "TEST_TARGET=$TEST_TARGET karma start --single-run --browsers ChromeHeadless karma.conf.js",
"test:unit:all": "for t in ./test/unit/*; do env TEST_TARGET=`basename $t` npm run test:unit --silent || exit 1; done",
"test": "npm run test:unit:all --silent"
},
"author": "Ilya Ig. Petrov <[email protected]>, (https://git.io/ilyaigpetrov)",
"license": "GPL-3.0+",
"devDependencies": {
"babel-eslint": "^9.0.0",
"chai": "^4.1.2",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"rollup": "^0.65.0",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0",
"shx": "^0.3.2",
"sinon": "^6.1.5",
"sinon-chrome": "^2.3.2"
},
"dependencies": {
"debug": "^3.1.0"
}
}