-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 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
{
"name": "costreamjs",
"description": "A high-performance streaming programming language for parallel architecture. This repo (js-version) is created for better using & reading & debugging.",
"version": "1.0.1",
"main": "main.js",
"repository": "git@github.com:DML308/COStreamJS.git",
"author": "lxx.imac <lxx2013@mail.ustc.edu.cn>",
"license": "MIT",
"keywords": [
"stream",
"Dataflow",
"parallel-computing"
],
"bin": {
"costreamjs": "dist/costreamjs-cli.js"
},
"scripts": {
"dev": "npm run bison && stylus ./dist/main.styl & rollup -w -c rollup.config.js",
"build": "npm run bison && npx rollup -c rollup.config.js",
"bison": "jison src/config/parser.jison -o src/config/parser.js && node beforeRollup.js",
"count": "find ./src -maxdepth 4 -name '*.j*' | xargs cat |wc -l",
"count:comment": "find ./src -maxdepth 4 -name '*.j*' | xargs cat | grep \"^\\(\\s*\\*\\)\\|\\(/\\*\\)\\|.*//\" |wc -l",
"test": "npm run build && mocha test/*/*.js --require babel-register -t 16000",
"t": "mocha --require babel-register -t 16000",
"test:cover": "istanbul cover test/lexer.test.js"
},
"dependencies": {
"yargs": "^14.2.0"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"esm": "^3.2.22",
"istanbul": "^0.4.5",
"jison": "^0.4.18",
"mocha": "^6.1.4",
"rollup": "^1.11.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"stylus": "^0.54.5"
},
"babel": {
"presets": [
"env"
]
},
"files": [
"src",
"types/*.d.ts"
]
}