forked from andrewhead/python-program-analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "@andrewhead/python-program-analysis",
"displayName": "Python parsing and program analysis",
"main": "./dist/es5/index.js",
"types": "./dist/es5/index.d.ts",
"license": "MIT",
"files": [
"dist",
"cfg.png"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "0.4.8",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/andrewhead/python-program-analysis.git"
},
"scripts": {
"build": "npm run build:parser && tsc && tsc -m es6 --outDir dist/es6 && webpack",
"build:parser": "node ./node_modules/jison/lib/cli.js --outfile src/python3.js src/python3.jison && cpx src/python3.js dist/es5 && cpx src/python3.js dist/es6",
"format:all": "prettier --single-quote --trailing-comma=es5 --write \"{src,style}/**/*.{css,js,ts}\"",
"clean": "rimraf dist",
"test": "jest --watch",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/lodash": "^4.14.148",
"cpx": "^1.5.0",
"css-loader": "^1.0.1",
"jest": "^24.9.0",
"jison": "^0.4.18",
"prettier": "1.17.0",
"rimraf": "^2.6.3",
"style-loader": "^0.21.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.0.1",
"tslint": "^5.11.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.3",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"lodash": "^4.17.15"
},
"description": "A Typescript library for parsing Python 3 and doing basic program analysis, like forming control-flow graphs and def-use chains.",
"bugs": {
"url": "https://github.com/andrewhead/python-program-analysis/issues"
},
"homepage": "https://github.com/andrewhead/python-program-analysis#readme",
"author": ""
}