-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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": "scenegraph-schema",
"version": "0.2.0",
"author": "Sam Heavner (slheavner)",
"license": "MIT",
"scripts": {
"build": "npm run lint && tsc",
"start": "npm run ts-node",
"start:dev": "nodemon --exec npm run ts-node",
"start:dev:test": "nodemon --exec npm run ts-node:test",
"ts-node": "ts-node ./src/index.ts",
"prets-node:test": "npm test",
"ts-node:test": "npm run ts-node",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest",
"prepublish": "pkgfiles"
},
"main": "./dist/index.js",
"bin": {
"scenegraph-schema": "./dist/cli.js",
"sgschema": "./dist/cli.js"
},
"files": [
"dist/*",
"assets/*",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/slheavner/scenegraph-schema.git"
},
"homepage": "https://github.com/slheavner/scenegraph-schema",
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/glob": "^7.1.1",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/minimist": "^1.2.0",
"@types/node": "^10.17.15",
"@types/xml2js": "^0.4.5",
"@types/xml2json": "^0.11.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"pkgfiles": "^2.3.2",
"ts-jest": "^23.10.5",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"typescript-tslint-plugin": "^0.3.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"notify": true,
"rootDir": "src/",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"dependencies": {
"chokidar": "^3.3.1",
"globby": "^11.0.0",
"minimist": "^1.2.0",
"xml2json": "^0.12.0"
}
}