-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"name": "slice2json",
"version": "0.3.1",
"description": "Parser for the Slice language",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc -P tsconfig.build.json && copyfiles -u 1 \"src/*.ohm\" lib",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"src",
"lib"
],
"repository": "aikoven/slice2json",
"author": "Daniel Lytkin <dan.lytkin@gmail.com>",
"license": "GPL-2.0",
"dependencies": {
"ohm-js": "^0.14.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"copyfiles": "^2.1.1",
"glob": "^7.1.4",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"slice2js": "~3.7.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}