-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2 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
{
"name": "typhon-lang",
"version": "1.0.13",
"description": "Typhon = Python + Types + ECMAScript modules",
"author": {
"name": "David Geo Holmes",
"email": "[email protected]"
},
"browser": "./build/browser/index.js",
"main": "./build/main/index.js",
"module": "./build/module/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/geometryzen/typhon-lang/blob/master/LICENSE"
}
],
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/geometryzen/typhon-lang.git"
},
"scripts": {
"build": "rm -rf build && python3 ./build.py gen && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"lint": "eslint . --ext .ts",
"test": "nyc ./node_modules/.bin/_mocha 'test/**/*.ts'",
"docs": "npm run docs:typedoc && open-cli docs/index.html --ignoreCompilerErrors --entryPointStrategy",
"docs:typedoc": "rm -rf docs && typedoc --options typedoc.json",
"prepublishOnly": "npm run build && npm run lint && npm test",
"release": "release-it"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"open-cli": "^7.2.0",
"release-it": "^17.0.1",
"rollup": "^4.9.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
}
}