forked from ignition-is-go/posistagenet-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.28 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
{
"name": "posistagenet",
"version": "0.4.0",
"author": "KBjordahl",
"description": "NodeJS implementation of PosiStageNet https://www.posistage.net/",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"start": "node dist",
"dev": "nodemon",
"build": "tsc",
"lint": "tslint --project .",
"test": "jest",
"test-ci": "jest --coverage",
"cleanup": "rm -fr dist/",
"prepublishOnly": "npm run build",
"postpack": "npm run cleanup"
},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "23.3.10",
"@types/node": "10.12.18",
"dotenv": "6.2.0",
"jest": "23.6.0",
"nodemon": "1.18.9",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.0",
"typescript": "3.3.3"
},
"resolutions": {
"**/event-stream": "^4.0.1"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/lucidcreative/posistagenet-node/src/master/"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"psn",
"posistagenet",
"lucid",
"tracking"
],
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}