forked from sdawood/json-tots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
{
"name": "json-tots",
"version": "0.0.0-development",
"description": "Template of Templates, a.k.a Template Should Eat Itself",
"main": "lib/transform.js",
"scripts": {
"commit": "git-cz",
"test": "npm run eslint && jest --verbose",
"prebuild": "rimraf lib",
"build": "babel --copy-files --out-dir lib --ignore *.spec.js src",
"eslint": "./node_modules/.bin/eslint src --quiet",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"functional-pipelines": "^1.1.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"traverse": "^0.6.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "^1.7.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "~3.18.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"semantic-release": "^15.14.0",
"travis-deploy-once": "^5.0.11",
"@semantic-release/commit-analyzer": "^6.0.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"refactor": "patch",
"perf": "patch",
"style": null,
"test": null,
"chore": null
}
},
"release": {
"analyzeCommits": "@semantic-release/commit-analyzer"
},
"repository": {
"type": "git",
"url": "https://github.com/sdawood/json-tots.git"
},
"keywords": [
"JSON",
"template",
"template of templates",
"recursive templates",
"inception",
"transform",
"transformation",
"jsonpath",
"render",
"meta",
"higer order"
],
"files": [
"lib",
"README.md",
"LICENSE"
],
"author": "Shaady Dawood <[email protected]> (http://github.com/sdawood/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdawood/json-tots/issues"
},
"homepage": "https://github.com/sdawood/json-tots#readme"
}