-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
{
"name": "object-reference",
"version": "0.0.4",
"description": "Resolves objects with values referencing other paths in the same object.",
"main": "lib/index.js",
"files": [
"lib/*"
],
"keywords": [
"object",
"reference",
"self-referencing",
"object paths",
"self referencing",
"config",
"resolve",
"resolver"
],
"scripts": {
"build": "tsc --emitDeclarationOnly && babel src --out-dir lib --extensions \".ts,.tsx\"",
"type-check": "tsc --noEmit",
"lint": "tslint --project .",
"test": "jest",
"release": "standard-version -r"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammarks/object-reference.git"
},
"author": "Sam Marks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sammarks/object-reference/issues"
},
"homepage": "https://github.com/sammarks/object-reference#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.52",
"@babel/core": "^7.0.0-beta.52",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.52",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"@babel/preset-typescript": "^7.0.0-beta.52",
"@types/chai": "^4.1.4",
"@types/jest": "^23.1.4",
"@types/lodash": "^4.14.110",
"babel-plugin-add-module-exports": "^0.3.1",
"chai": "^4.1.2",
"jest": "^23.6.0",
"jest-junit": "^5.1.0",
"standard-version": "^4.4.0",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^2.9.2"
},
"dependencies": {
"lodash": "^4.17.10"
}
}