-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "@andalugeeks/andaluh",
"version": "1.1.6",
"description": "andaluh-js",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint --project \"./tsconfig.json\"",
"test:all": "mocha --require ts-node/register test/**/*.ts",
"test:lemario": "mocha --require ts-node/register test/**/lemario.ts",
"test": "mocha --require ts-node/register test/**/epa.ts",
"docs": "typedoc --out docs src",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs"
},
"homepage": "https://github.com/andalugeeks/andaluh-js#readme",
"author": {
"name": "Eduardo Amador Patón",
"email": "eamadorpaton@gmail.com",
"url": "https://andalugeeks.com"
},
"license": "GPLv3",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.24",
"chai": "^4.2.0",
"gh-pages": "^2.0.1",
"mocha": "^5.2.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3"
},
"dependencies": {
"xregexp": "^4.2.4"
}
}