This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.15 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cee-render",
"version": "0.2.4",
"description": "Librería renderizado del CEE",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"pretest": "npm run sass",
"test": "jest",
"test:verbose": "npm run sass && jest --verbose",
"test:watch": "npm run sass && jest --watchAll",
"build": "npm run test && rimraf ./build && gulp",
"prepare": "npm run build",
"publish:server": "npm publish",
"sass": "rimraf ./build && gulp sass",
"sass:watch": "gulp dev",
"dev:server": "ts-node dev.ts",
"dev": "npm-run-all --parallel sass:watch dev:server"
},
"engines": {
"node": ">=8.9.1"
},
"keywords": [
"TS",
"Javascript",
"npm"
],
"author": "Alejandro Frías",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alejandrofdiaz/cee-render.git"
},
"bugs": {
"url": "https://github.com/alejandrofdiaz/cee-render/issues"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/handlebars": "^4.0.37",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.6",
"@types/puppeteer": "^1.2.3",
"@types/xml-js": "^1.0.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-env": "^1.6.1",
"express": "^4.16.3",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-postcss": "^7.0.1",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.0-alpha.3",
"jest": "^23.4.2",
"merge2": "^1.2.1",
"npm-run-all": "^4.1.3",
"postcss-cssnext": "^3.1.0",
"postcss-url": "^7.3.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.2",
"ts-node": "^7.0.0",
"tslint": "^5.9.1",
"typescript": "^3.0.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"dependencies": {
"handlebars": "^4.0.11",
"puppeteer": "^1.3.0",
"xml-js": "^1.6.2"
}
}