-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 KB
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
{
"name": "@stackhouseos/json-rules",
"version": "1.2.9",
"description": "Validate json business logic",
"main": "./lib",
"browser": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/stackhousesrl/json-rules"
},
"scripts": {
"prepublish": "yarn task-babel",
"task-babel-watch": "yarn task-babel -w",
"task-babel": "babel -d lib src --copy-files",
"test": "mocha -w --require @babel/register ./tests"
},
"author": "Stackhouse SRL",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "7.0.0",
"@babel/register": "^7.7.7",
"@babel/runtime": "^7.3.4",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.2"
}
}