-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.14 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
{
"name": "marko-playground",
"version": "4.22.0",
"description": "Playground for visual testing of Marko components",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist templates/*.marko.js test/**/*.marko.js static .cache",
"start": "yarn clean && COMPONENTS_ROOT_DIR=test/examples PLAYGROUND_DIR=test/pg yarn ts-node ./src/index.ts",
"compile": "tsc",
"lint": "tslint ./src/**/*.ts -p .",
"unit-test": "yarn markoc test && yarn mocha 'test/**/*.spec.ts'",
"test": "yarn lint && yarn unit-test",
"release": "yarn npm_release --auto --auto-fallback minor",
"custom": "yarn clean && yarn compile && git fetch && yarn release",
"precommit": "yarn lint",
"prepush": "yarn test"
},
"keywords": [
"marko",
"marko-widgets",
"components",
"playground",
"typescript"
],
"author": {
"name": "Timur Manyanov",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eBay/marko-playground.git"
},
"dependencies": {
"@lasso/marko-taglib": "^1.0.8",
"chalk": "^2.3.1",
"express": "^4.14.0",
"glob": "^7.1.0",
"lasso": "^3.1.0",
"lasso-less": "^2.4.7",
"lasso-marko": "^2.4.0",
"marko": "^4.7.4"
},
"devDependencies": {
"@types/async-writer": "^1.4.30",
"@types/chai": "^4.0.10",
"@types/express": "^4.0.39",
"@types/glob": "^5.0.34",
"@types/lasso": "^2.4.0",
"@types/lodash": "^4.14.88",
"@types/marko": "^4.6.0",
"@types/mocha": "^5.0.0",
"@types/node": "^8.0.58",
"@types/sinon": "^5.0.0",
"@types/sinon-chai": "^3.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"husky": "^0.14.3",
"mocha": "^5.0.1",
"release-tools": "^2.5.2",
"rimraf": "^2.6.2",
"sinon": "^6.0.0",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.6",
"ts-node": "^7",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.5.0",
"typescript": "^2.7.2"
},
"bin": {
"marko-widgets-playground": "bin/marko-playground.js",
"marko-playground": "bin/marko-playground.js"
},
"engines": {
"node": ">=6.12.1"
}
}