-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 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
47
48
49
50
51
52
53
{
"name": "semantic-fn",
"version": "1.2.0",
"description": "Convert human readable text to executable JS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/types/semantic-fn.d.ts",
"files": [
"dist"
],
"publishConfig": {
"tag": "latest"
},
"scripts": {
"build": "npm-run-all --parallel build:app build:types",
"build:app": "rollup -c",
"build:types": "tsc -p tsconfig.build.json",
"format:files": "prettier --ignore-path .gitignore .",
"format:check": "npm run format:files -- --check",
"format": "npm run format:files -- --write",
"lint": "eslint .",
"prepare": "husky install",
"test": "jest",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"validate": "npm-run-all --parallel format:check lint test typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSHari/semantic-fn.git"
},
"author": "Sai Hari",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSHari/semantic-fn/issues"
},
"homepage": "https://github.com/SSHari/semantic-fn#readme",
"devDependencies": {
"ssh-dev-scripts": "^1.1.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
},
"keywords": [
"js",
"javascript",
"semantic",
"fn",
"function",
"context-free grammar",
"scanner",
"parser"
]
}