-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.99 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"require": [
"@babel/register"
]
},
"dependencies": {
"ajv": "^6.10.2",
"es6-error": "^4.1.1",
"nearley": "^2.19.0",
"roarr": "^2.14.6"
},
"description": "A declarative function composition and evaluation engine.",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@babel/types": "^7.7.2",
"ava": "^2.4.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-export-default-name": "^2.0.4",
"coveralls": "^3.0.8",
"eslint": "^6.6.0",
"eslint-config-canonical": "^18.1.0",
"flow-bin": "^0.112.0",
"flow-copy-source": "^2.0.9",
"husky": "^3.1.0",
"nyc": "^14.1.1",
"semantic-release": "^15.13.31",
"sinon": "^7.5.0"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run build"
}
},
"keywords": [
"composition",
"declerative",
"expression"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "pianola",
"nyc": {
"exclude": [
"src/grammars/*.js"
],
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"text-lcov"
],
"require": [
"@babel/register"
],
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/pianola"
},
"scripts": {
"build": "rm -fr ./dist && npm run compile-grammar && babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
"compile-grammar": "nearleyc ./src/grammars/expressionGrammar.ne --out ./src/grammars/expressionGrammar.js",
"lint": "eslint ./src ./test && flow",
"test": "ava --verbose"
},
"version": "1.0.0"
}