forked from FAIR-biomed/FAIR-biomed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.73 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
{
"name": "FAIR-biomed",
"version": "0.1.0",
"description": "Browser extension accessing open data resources in the biomedical domain",
"scripts": {
"clean": "rm -fr dist && mkdir dist",
"babel": "npx babel --copy-files src/app --out-dir dist --presets @babel/preset-react",
"babel-prod": "npx babel --copy-files src/app --out-dir dist --presets @babel/preset-react --ignore src/app/cache",
"build-lib": "node src/build/build-library.js",
"build-dev": "node src/build/build-static.js development",
"build-prod": "node src/build/build-static.js production",
"build": "npm run babel; npm run build-dev; npm run build-lib",
"production": "npm run clean; npm run test; npm run build-lib; npm run babel-prod; npm run build-prod;",
"upgrade-version": "node src/build/increase-version.js",
"test": "node_modules/mocha/bin/_mocha",
"test-app": "node_modules/mocha/bin/_mocha test/test-app.js",
"test-plugin": "node_modules/mocha/bin/_mocha test/test-plugin.js",
"coverage": "node_modules/nyc/bin/nyc.js --reporter=text --reporter=html node_modules/mocha/bin/_mocha",
"watch": "npm run clean; npm run build; npx babel --copy-files --watch src/app --out-dir dist --presets @babel/preset-react"
},
"keywords": [
"science",
"extension"
],
"author": "Tomasz Konopka",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"browserify": "^16.2.3",
"fs-extra": "^7.0.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"uglify-es": "^3.3.9",
"utf8": "^3.0.0"
},
"dependencies": {
"path": "^0.12.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-motion": "^0.5.2",
"sanitize-html": "^1.18.2"
}
}