-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "fbp-manifest",
"version": "0.3.1",
"description": "Flow-Based Programming Manifest tools",
"main": "src/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/*.js src/**/*.js src/**/**/*.js spec/*.js",
"typecheck": "tsc",
"build": "tsc",
"pretest": "npm run lint && npm run typecheck",
"test": "nyc grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/flowbased/fbp-manifest.git"
},
"author": "Henri Bergius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flowbased/fbp-manifest/issues"
},
"bin": {
"fbp-manifest-deps": "./bin/fbp-manifest-deps",
"fbp-manifest-list": "./bin/fbp-manifest-list",
"fbp-manifest-stats": "./bin/fbp-manifest-stats",
"fbp-manifest-validate": "./bin/fbp-manifest-validate"
},
"homepage": "https://github.com/flowbased/fbp-manifest#readme",
"devDependencies": {
"@types/node": "^14.14.14",
"chai": "^4.0.1",
"coveralls": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.14.0",
"grunt": "^1.0.1",
"grunt-mocha-test": "^0.13.2",
"grunt-yaml": "^0.4.2",
"grunt-yamllint": "^0.3.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"clone": "^2.0.0",
"commander": "^6.1.0",
"fbp-graph": "^0.7.0",
"tv4": "^1.2.7"
},
"nyc": {
"include": [
"src/*.js",
"src/**/*.js",
"src/**/**/*.js"
]
}
}