-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.39 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
54
55
56
57
58
59
60
61
62
63
{
"name": "@zenox/config",
"version": "0.2.0",
"description": "Config engine for Zenox Framework",
"keywords": [
"zenox",
"config",
"yaml"
],
"license": "MIT",
"main": "src/index.js",
"typings": "src/index",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run test:lint && npm run test:jest",
"test:lint": "tslint **/*.ts -e '**/*.d.ts' -t verbose",
"test:jest": "jest",
"clear": "clearb",
"prepublish": "npm run build"
},
"author": {
"name": "Albert Cuartiella",
"email": "cuarti1992@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuarti/zenox-config.git"
},
"homepage": "https://github.com/cuarti/zenox-config#readme",
"bugs": {
"url": "https://github.com/cuarti/zenox-config/issues"
},
"dependencies": {
"js-yaml": "^3.12.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/js-yaml": "^3.11.2",
"@types/node": "^10.11.3",
"clearb": "^0.1.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/specs/(.*/)?\\w+\\.tsx?",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}