-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"author": "The Snips Tooling Team",
"bin": {
"tpt": "bin/index.js"
},
"description": "Node framework to bootstrap and deploy web applications based on templates",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "6.22.0",
"colors": "^1.1.2",
"concurrently": "^3.1.0",
"commander": "^2.9.0",
"glob": "^7.1.1",
"jest": "18.1.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"node-fetch": "^1.6.3",
"nodemon": "^1.11.0",
"pluralize": "^3.0.0"
},
"engines": {
"node": ">= 6.0"
},
"license": "MIT",
"main": "lib/index.js",
"name": "teleport.js",
"scripts": {
"check": "make install",
"compile": "babel --presets latest -d lib/ src/",
"postinstall": "sh bin/postinstall.sh",
"link": "source bin/link.sh",
"test": "export TEST_RANDOM=$RANDOM && jest tests/create.test.js && jest tests/utility_methods.test.js && jest tests/deploy_methods.test.js",
"test-jenkins": "export TEST_RANDOM=$RANDOM && jest tests/create.test.js && jest tests/utility_methods.test.js",
"dev-watch": "nodemon --watch src --exec \"npm run compile\"",
"dev": "npm run dev-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/snipsco/teleport"
},
"version": "0.3.0"
}