-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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": "x-plane-dataref-search",
"version": "2.0.0",
"description": "Search X-Plane Datarefs",
"main": "index.js",
"scripts": {
"test": "node node_modules/.bin/mocha --compilers js:babel-register src/**/*.test.js;",
"start": "node tasks/serve.js",
"build": "node node_modules/.bin/browserify ./src/app/index.js -t [ babelify --presets [ es2015 ] ] -o ./dist/js/app.js",
"watch": "node node_modules/.bin/watchify ./src/app/index.js -t [ babelify --presets [ es2015 ] ] -o ./dist/js/app.js",
"update-datarefs": "sh tasks/update-datarefs.sh",
"deploy": "npm run build && rsync -a ./dist/ ./gh-pages/ && cd ./gh-pages && git add --all && git commit -m'new build' && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/der-On/X-Plane-Dataref-Search.git"
},
"keywords": [
"x-plane",
"xplane",
"dataref"
],
"author": "Ondrej Brinkel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/der-On/X-Plane-Dataref-Search/issues"
},
"homepage": "https://github.com/der-On/X-Plane-Dataref-Search#readme",
"dependencies": {
"lodash": "^4.17.4",
"preact": "^8.2.6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"expect.js": "^0.3.1",
"express": "^4.16.2",
"mocha": "^4.0.1",
"watchify": "^3.9.0"
}
}