-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) Β· 948 Bytes
/
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
{
"name": "simple-language",
"version": "0.1.9",
"description": "A simple scripting language powered by TypeScript",
"main": "./dist/simple.js",
"repository": "https://github.com/XiaocongDong/simple.git",
"author": "XiaocongDong <buptdxc@gmail.com>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "ts-node index.ts",
"test": "jest",
"build": "tsc --outDir dist",
"test-watch": "jest --watch"
},
"devDependencies": {
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleDirectories": [
"node_modules",
"lib"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}