-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "dustjs-ast",
"version": "1.0.0",
"description": "A custom abstract syntax tree for Dust.js",
"homepage": "https://github.com/coryroloff/dustjs-ast",
"scripts": {
"test": "nyc --reporter=text --reporter=lcov --reporter=cobertura mocha test/**/*-spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint lib test scripts webpack.config.js",
"healthcheck": "npm run lint && npm run test",
"fixtures": "babel-node scripts/fixtures.js",
"docs": "babel-node scripts/docs.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"prepublish": "webpack"
},
"bin": {
"dustjs-ast": "bin/dustjs-ast.js"
},
"author": "Cory Roloff",
"license": "MIT",
"main": "dist/dustjs-ast.js",
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.9.1",
"babel-eslint": "6.1.0",
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-preset-es2015": "6.9.0",
"chai": "3.5.0",
"coveralls": "2.11.9",
"eslint": "2.12.0",
"eslint-plugin-flow-vars": "0.4.0",
"eslint-plugin-flowtype": "2.3.0",
"flow-bin": "0.27.0",
"htmlencode": "0.0.4",
"js-yaml": "3.6.1",
"lodash": "4.13.1",
"markdown-table": "0.4.0",
"mocha": "2.5.3",
"nyc": "6.4.4",
"pre-commit": "1.1.3",
"sinon": "1.17.4",
"webpack": "2.1.0-beta.13",
"webpack-dev-server": "2.1.0-beta.0"
},
"engines": {
"node": ">6.x",
"npm": ">3.x"
},
"pre-commit": {
"run": [
"lint",
"flow",
"test"
]
},
"dependencies": {
"commander": "2.9.0"
},
"files": [
"dist/dustjs-ast.js",
"bin/dustjs-ast.js"
]
}