-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
48
49
{
"name": "skeletik",
"version": "0.8.0",
"description": "Tiny lexical analyzer",
"keywords": [
"skeleton",
"lexer"
],
"author": "RubaXa <ibnRubaXa@gmail.com>",
"license": "MIT",
"main": "index.js",
"repository": "git@github.com:artifact-project/skeletik.git",
"scripts": {
"test": "jest --coverage",
"watch": "tsc --watch",
"ts-build": "tsc",
"git-clean": "git clean -f",
"prepublish": "npm run test && npm run ts-build",
"postpublish": "npm run git-clean"
},
"files": [
"*.js",
"*.d.ts",
"src/*/*.js",
"src/*/*.d.ts",
"preset/*/*.js",
"preset/*/*.d.ts"
],
"devDependencies": {
"@types/jest": "^19.2.3",
"@types/node": "^11.9.3",
"jest": "^20.0.3",
"ts-jest": "^20.0.4",
"typescript": "^2.4.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.tests\\.ts$",
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/extensions.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}