-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 927 Bytes
/
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
{
"name": "setup",
"version": "0.1.0",
"description": "Project setup",
"main": "./scripts/setup.js",
"scripts": {
"setup": "node ./scripts/setup.js",
"test": "./node_modules/.bin/npm-run-all --parallel build:test:*",
"build:test:api": "node ./scripts/api_test.js",
"build:test:client": "node ./scripts/client_test.js",
"build:dev": "node ./scripts/dev.js",
"build:prod": "node ./scripts/prod.js",
"build:down": "node ./scripts/down.js",
"postinstall": "node ./scripts/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nogsantos/telzir.git"
},
"keywords": [
"setup"
],
"author": "Fabricio Nogueira",
"license": "ISC",
"bugs": {
"url": "https://github.com/nogsantos/telzir/issues"
},
"homepage": "https://github.com/nogsantos/telzir#readme",
"devDependencies": {
"colors": "^1.3.3",
"node-emoji": "^1.8.1",
"npm-run-all": "4.1.5",
"shelljs": "^0.8.5"
}
}