forked from aikoven/slice2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "slice2json",
"version": "0.1.0",
"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 && cpx \"src/*.ohm\" lib",
"prepare": "npm test && npm run build"
},
"files": [
"src",
"lib"
],
"repository": "aikoven/slice2json",
"author": "Daniel Lytkin <[email protected]>",
"license": "GPL-2.0",
"dependencies": {
"ohm-js": "^0.14.0"
},
"devDependencies": {
"@types/glob": "^5.0.33",
"@types/jest": "^21.1.8",
"@types/node": "^8.0.53",
"cpx": "^1.5.0",
"glob": "^7.1.2",
"jest": "^21.2.1",
"rimraf": "^2.6.2",
"slice2js": "~3.7.0",
"ts-jest": "^21.2.3",
"typescript": "^2.6.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}