-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
68 lines (68 loc) · 2.33 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
{
"name": "tester-chrome-extension",
"version": "2.1.1",
"description": "The Rainforest Chrome Extension for Testers (internal JS)",
"main": "src/index.js",
"scripts": {
"test": "mocha --require jsdom-global/register --require @babel/register src/\\*\\*/__tests__/\\*.js",
"test:ci": "nyc --require @babel/register npm test -- --reporter mocha-junit-reporter",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"build:browser": "mkdir -p extension/build && browserify src/bootstrap.js -d -o extension/build/main.js -t [ babelify --presets [ @babel/preset-env ] ] -t [ envify --SENTRY_DSN $SENTRY_DSN ] -p [ minifyify --map main.js.map --output extension/build/main.js.map ]",
"build": "npm run build:browser",
"watch": "mkdir -p extension/build && watchify src/bootstrap.js -d -o extension/build/main.js -t [ babelify ]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rainforestapp/tester-chrome-extension.git"
},
"keywords": [
"rainforest",
"chrome-extension"
],
"author": "Russell Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/rainforestapp/tester-chrome-extension/issues"
},
"homepage": "https://github.com/rainforestapp/tester-chrome-extension#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^9.0.0",
"babelify": "10.0.0",
"browserify": "17.0.0",
"chai": "3.5.0",
"chai-immutable": "1.6.0",
"coveralls": "^3.1.0",
"envify": "^4.1.0",
"eslint": "3.1.1",
"eslint-config-rainforest": "0.1.2",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flow-vars": "0.5.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.0.1",
"eslint-plugin-react": "5.2.2",
"fetch-mock": "5.1.1",
"jsdom": "9.4.1",
"jsdom-global": "2.0.0",
"local-web-server": "^3.0.7",
"minifyify": "7.3.5",
"mocha": "^8.1.3",
"mocha-junit-reporter": "1.12.0",
"nyc": "^15.0.0",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"watchify": "^3.11.1"
},
"dependencies": {
"@sentry/browser": "^6.11.0",
"deep-freeze": "0.0.1",
"immutable": "3.8.1",
"phoenix": "^1.4.0",
"redux": "4.0.5",
"redux-actions": "0.10.1"
}
}