-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "react-devtools-symbiote",
"version": "0.2.0",
"description": "A module that allows use React DevTools for inspection your component hierarchy without React.",
"author": "RubaXa <[email protected]>",
"license": "MIT",
"repository": "[email protected]:artifact-project/react-devtools-symbiote.git",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"ts-build": "tsc",
"umd-build": "rollup -c",
"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"
],
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.3",
"rollup": "^0.47.4",
"rollup-plugin-typescript": "^0.8.1",
"ts-jest": "^20.0.4",
"typescript": "^2.4.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/extensions.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}