-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "@lasso/marko-taglib",
"version": "2.0.6",
"description": "A taglib to use Marko with Lasso",
"main": "index.js",
"scripts": {
"lint": "eslint . test/",
"mocha": "mocha test/*-test.js",
"test": "npm run lint && nyc npm run mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lasso-js/lasso-marko-taglib.git"
},
"keywords": [
"lasso",
"marko",
"taglib"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lasso-js/lasso-marko-taglib/issues"
},
"homepage": "https://github.com/lasso-js/lasso-marko-taglib#readme",
"peerDependencies": {
"lasso": "^3 || ^4",
"lasso-marko": ">=3.0.1",
"marko": ">=4.7.0 || ^5"
},
"devDependencies": {
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-config-marko": "^1.0.1",
"lasso": "^3.0.0",
"lasso-marko": "^3.0.0",
"marko": "^5.0.0",
"mocha": "^4.0.0",
"nyc": "^11.2.1"
},
"dependencies": {
"async": "^0.9.2",
"lasso-resolve-from": "^1.2.0",
"raptor-async": "^1.1.3",
"raptor-logging": "^1.1.3",
"raptor-util": "^1.1.2"
}
}