-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.96 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
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
{
"name": "c-viz",
"version": "0.1.2",
"description": "",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text"
],
"all": true
},
"main": "lib/index",
"types": "lib/index",
"files": [
"lib"
],
"scripts": {
"build": "grunt build",
"format": "npx prettier . --write",
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --require ts-node/register test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caipng/c-viz.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/caipng/c-viz/issues"
},
"homepage": "https://github.com/caipng/c-viz#readme",
"dependencies": {
"lodash": "^4.17.21",
"pegjs-util": "^1.4.21"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@types/chai": "^4.3.6",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.199",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"@types/pegjs": "^0.10.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^4.3.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^6.0.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"grunt-peg": "^2.0.1",
"grunt-shell": "^4.0.0",
"grunt-ts": "^6.0.0-beta.22",
"js-yaml": "^4.1.0",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"prettier": "3.0.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}