Skip to content

Commit 21a5d9a

Browse files
committed
Add basic package.json
1 parent 98ba5fd commit 21a5d9a

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

package.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"name": "@syntest/javascript",
3+
"version": "0.0.1",
4+
"description": "SynTest JavaScript is a tool for automatically generating test cases for the JavaScript language",
5+
"keywords": [
6+
"syntest",
7+
"automatic-test-generation"
8+
],
9+
"homepage": "https://www.syntest.org",
10+
"bugs": {
11+
"url": "https://github.com/syntest-framework/syntest-javascript/issues"
12+
},
13+
"license": "Apache-2.0",
14+
"contributors": [
15+
"Annibale Panichella",
16+
"Mitchell Olsthoorn",
17+
"Dimitri Stallenberg"
18+
],
19+
"main": "dist/index.js",
20+
"types": "dist/index.d.ts",
21+
"files": [
22+
"/dist",
23+
"/src/**/*.js",
24+
"/api.js",
25+
"/NOTICE"
26+
],
27+
"bin": {
28+
"syntest-javascript": "dist/bin.js"
29+
},
30+
"repository": {
31+
"type": "git",
32+
"url": "git+https://github.com/syntest-framework/syntest-javascript.git"
33+
},
34+
"scripts": {
35+
"build": "npm run build:compile",
36+
"build:compile": "tsc --build",
37+
"build:watch": "tsc --build --watch",
38+
"clean": "rm -rf .nyc_output dist node_modules",
39+
"clean:dist": "rm -rf dist",
40+
"format": "prettier --write .",
41+
"format:check": "prettier --check .",
42+
"lint": "eslint .",
43+
"lint:fix": "eslint . --fix",
44+
"prepare": "npm run build",
45+
"run": "truffle run syntest-solidity",
46+
"test": "mocha",
47+
"test:coverage": "nyc mocha",
48+
"test:watch": "mocha --watch"
49+
},
50+
"dependencies": {
51+
},
52+
"devDependencies": {
53+
54+
},
55+
"engines": {
56+
"node": ">=10.24.0"
57+
}
58+
}

0 commit comments

Comments
 (0)