-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "flkit",
"description": "A front-language(HTML,CSS,JS) toolkit that support tempate syntax(Smarty,PHP,ejs,jade)",
"version": "3.1.2",
"author": {
"name": "welefen",
"email": "welefen@gmail.com"
},
"scripts": {
"test": "ava test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 50000 --recursive -R spec test/",
"compile": "babel --presets es2015-loose,stage-1 --plugins transform-runtime,transform-flow-strip-types,transform-flow-comments src/ --out-dir lib/ --source-maps",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublish": "npm run compile",
"lint": "eslint src/ --fix"
},
"contributors": [
{
"name": "welefen",
"email": "welefen@gmail.com"
}
],
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "6.7.7",
"babel-core": "6.x.x",
"babel-eslint": "6.x.x",
"babel-plugin-transform-flow-comments": "6.x.x",
"babel-plugin-transform-flow-strip-types": "6.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-stage-1": "6.x.x",
"istanbul": "0.4.0",
"eslint": "^4.2.0",
"eslint-config-think": "^1.0.2"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/welefen/flkit"
},
"engines": {
"node": ">=0.12.0"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/welefen/flkit/issues"
}
}