-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 987 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
{
"name": "elastin",
"version": "0.1.0",
"description": "\"Connective material\" for your application.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"ts-build": "tsc",
"git-clean": "git clean -f",
"prepublishOnly": "npm run test && npm run ts-build",
"postpublish": "npm run git-clean"
},
"author": "RubaXa <[email protected]>",
"license": "MIT",
"repository": "[email protected]:artifact-project/elastin.git",
"devDependencies": {
"@types/jest": "^23.3.3",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.1"
},
"files": [
"*.js",
"*.d.ts",
"src/*/*.js",
"src/*/*.d.ts"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.tests\\.ts$",
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/extensions.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}