-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "tf-hcl",
"version": "0.0.0",
"description": "tf-hcl",
"license": "MIT",
"repository": "https://github.com/r24y/tf-hcl.git",
"author": "Ryan Muller Kennedy <r24y@users.noreply.github.com> (https://www.rmkennedy.com)",
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage && rimraf .nyc_output && rimraf lib_test/src && rimraf 'lib_test/test/**/*.spec.js' && rimraf src/hcl.ne.ts",
"prettier": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublish": "npm run build",
"prebuild": "npm run clean && npm run prettier && npm run lint && echo Using TypeScript && tsc --version",
"build": "rimraf src/hcl.ne.ts && npm run -s build:nearley && tsc --pretty && lerna run build",
"build:nearley": "nearleyc --out src/hcl.ne.ts src/hcl.ne",
"build:docs": "cd packages/docsite && npm run build",
"test": "npm run clean && npm run -s build:nearley && tsc -p tsconfig.test.json --pretty && nyc ava \"**/*.spec.js\" --verbose",
"test:grammar": "npm run -s build && nearley-test lib/hcl.ne.js",
"coverage": "nyc report --reporter=lcov --reporter=text --reporter=html",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postinstall": "lerna bootstrap",
"deploy": "gh-pages -d packages/docsite/public"
},
"dependencies": {
"moo": "^0.3.3",
"nearley": "^2.10.2",
"unist-builder": "^1.0.2"
},
"devDependencies": {
"@types/moo": "^0.3.0",
"@types/node": "^7.0.0",
"ava": "^0.20.0",
"conventional-changelog-eslint": "^0.2.0",
"coveralls": "^2.0.0",
"gh-pages": "^1.1.0",
"lerna": "^2.8.0",
"nearley": "^2.10.2",
"nyc": "^10.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"semantic-release": "^8.0.3",
"semantic-release-cli": "^3.2.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.4.2",
"unist-util-inspect": "^4.1.1",
"unist-util-remove-position": "^1.1.1",
"unist-util-select": "^1.5.0"
},
"release": {
"branch": "develop",
"analyzeCommits": {
"preset": "eslint",
"releaseRules": [
{
"tag": "Docs",
"scope": "README",
"release": "patch"
}
]
}
},
"engines": {
"node": ">=6.0.0"
},
"ava": {
"require": [
"babel-register"
]
},
"nyc": {
"exclude": [
"lib_test/test/**",
"**/*.ne.js"
]
}
}