-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "roamsr",
"version": "1.1.0",
"description": "For more info, see: https://roamresearch.com/#/app/roam-depot-developers/page/uQSCwVKx0",
"main": "./src/main.js",
"scripts": {
"format": "prettier --write 'src/**/*.{js,json}'",
"test": "jest",
"start": "parcel ./src/debug.js",
"build-debug": "parcel build ./src/debug.js --no-source-maps --no-content-hash --no-minify --out-file stable.js -d ./js/",
"build": "npm test && parcel build ./src/main.js --no-source-maps --no-content-hash --no-minify --out-file stable.js -d ./js/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidam38/roamsr.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/aidam38/roamsr/issues"
},
"homepage": "https://github.com/aidam38/roamsr#readme",
"devDependencies": {
"@babel/preset-env": "^7.13.9",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.3",
"prettier": "^2.2.1"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions",
"last 3 firefox versions"
],
"prettier": {
"printWidth": 120,
"useTabs": true
}
}