-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "jphps",
"title": "jphps",
"description": "PHP and HTML alternate static template",
"version": "1.0.1",
"homepage": "http://jphps.com/",
"main": "lib/jphps.js",
"typings": "lib/jphps.d.ts",
"author": {
"name": "zswang",
"url": "http://weibo.com/zswang"
},
"repository": {
"type": "git",
"url": "https://github.com/zswang/jphps.git"
},
"keywords": [
"template",
"php",
"html"
],
"bugs": {
"url": "https://github.com/zswang/jphps/issues"
},
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"gulp": "^3.9.0",
"gulp-examplejs": "^0.0.5",
"gulp-jdists": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-typescript": "^3.2.2",
"gulp-uglify": "^1.5.3",
"istanbul": "^0.3.17",
"jstrs": "^1.0.3",
"merge2": "^1.2.0",
"mocha": "^2.0.1",
"should": "^4.1.0",
"typescript": "^2.5.3"
},
"scripts": {
"_update_version": "node version.js",
"_dist": "gulp dist",
"test": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec",
"example": "gulp example",
"mocha": "npm run example && mocha",
"dist": "npm run _update_version && npm run example && npm run _dist && npm run test"
},
"files": [
"lib"
],
"dependencies": {
"@types/colors": "^1.1.3",
"@types/mkdirp": "^0.5.1",
"@types/node": "^8.0.32",
"@types/optimist": "0.0.29"
},
"bin": {
"jphps": "lib/cli.js"
}
}