-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "json-vars",
"version": "0.1.2",
"description": "Enables the use of variables in JSON and JSON-like configuration files",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"scripts": {
"test": "npm run clean && npm run build && ava",
"build": "npm run build-parser && tsc",
"build-parser": "pegjs --plugin ./node_modules/ts-pegjs/src/tspegjs.js -o ./src/FieldParser.ts ./src/FieldParser.pegjs",
"clean": "rm -rf dist ./src/FieldParser.ts",
"lint": "nsp check . && tslint -p . -e src/FieldParser.ts"
},
"pre-commit": [
"lint",
"test"
],
"homepage": "https://github.com/l-catallo/json-vars",
"bugs": "https://github.com/l-catallo/json-vars/issues",
"repository": {
"type": "git",
"url": "https://github.com/l-catallo/json-vars"
},
"keywords": [
"configuration",
"json",
"keys",
"postprocessor",
"processor",
"variables",
"yaml"
],
"author": {
"name": "Luca Catallo",
"email": "luca.catallo.293@gmail.com"
},
"license": "GPL-3.0",
"devDependencies": {
"@types/lodash": "^4.14.106",
"@types/node": "^9.6.6",
"ava": "^0.25.0",
"nsp": "^3.2.1",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"ts-pegjs": "^0.1.13",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"dependencies": {
"lodash": "^4.17.5"
}
}