-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
45
46
47
48
49
50
51
52
53
{
"name": "total",
"version": "0.2.3",
"description": "Expansible cli that computes the stdin",
"main": "dist/cli.js",
"bin": "dist/cli.js",
"scripts": {
"pretest": "npm run build",
"test": "npm run tslint && jest",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"deploy": "npm run test && npm publish"
},
"author": {
"name": "Alvaro Bernal Gimeno",
"email": "alvaro.bernal.gimeno@gmail.com",
"website": "https://alvarobg.com"
},
"engine": {
"node": "8.0"
},
"license": "M.I.T",
"dependencies": {
"commander": "^2.11.0",
"get-stdin": "^5.0.1",
"glob": "^7.1.2",
"module-alias": "^2.0.1"
},
"jest": {
"testMatch": [
"**/*.test.js"
],
"testEnvironment": "node"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^21.1.10",
"@types/node": "^8.10.13",
"ava": "^0.25.0",
"in-between": "^5.2.0",
"jest": "^22.4.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"_moduleAliases": {
"lib": "./dist/lib"
},
"homepage": "https://github.com/alvarobernalg/total.git",
"bugs": {
"issues": "https://github.com/alvarobernalg/total/issues"
}
}