-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1019 Bytes
/
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
{
"name": "backtick",
"description": "template literal based template engine",
"version": "0.3.2",
"author": "mkwtys <[email protected]>",
"bugs": {
"url": "https://github.com/mkwtys/backtick/issues"
},
"dependencies": {
"glob": "10.4.5",
"mkdirp": "3.0.1"
},
"devDependencies": {
"intelli-espower-loader": "1.1.0",
"mocha": "10.8.2",
"nyc": "17.0.0",
"rimraf": "5.0.10"
},
"directories": {
"test": "test"
},
"files": [
"lib"
],
"homepage": "https://github.com/mkwtys/backtick",
"keywords": [
"engine",
"template",
"literal",
"string"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mkwtys/backtick.git"
},
"scripts": {
"clean": "rimraf ./test/fixtures/dist",
"cover": "npm t && nyc report --reporter=lcov --reporter=text",
"pretest": "npm run clean",
"test": "nyc -s mocha 'test/**/*.js' --timeout 10000 --require intelli-espower-loader"
}
}