-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "rainbow-js-codegeneration",
"version": "1.0.7",
"description": "JavaScript based code-generation for Rainbow serialization format of Sitecore items",
"keywords": [
"sitecore",
"rainbow",
"generate",
"unicorn",
"codegeneration",
"code generation",
"gulpplugin"
],
"engineStrict": true,
"main": "./build/src/main.js",
"engines": {
"node": ">= 6.9.0"
},
"devDependencies": {
"@types/jest": "^23.1.0",
"@types/loglevel": "^1.5.3",
"@types/node": "^10.3.3",
"jest": "^23.1.0",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^6.0.0",
"tsutils": "^3.5.2",
"typescript": "^3.2.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --fix --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Alex Smagin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/asmagin/rainbow-js-codegeneration.git"
},
"bugs": {
"url": "https://github.com/asmagin/rainbow-js-codegeneration/issues"
},
"homepage": "https://github.com/asmagin/rainbow-js-codegeneration#readme",
"dependencies": {
"array-sort": "^1.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.2",
"gulp-util": "^3.0.8",
"handlebars": "^4.0.11",
"jest-cli": "^23.1.0",
"js-yaml": "^3.12.0",
"loglevel": "^1.6.1",
"natives": "^1.1.6",
"through2": "^3.0.0",
"tslib": "~1.9.2",
"write": "^1.0.3"
}
}