-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "careless",
"description": "A jsx/react fork for static XML generation",
"version": "0.1.5",
"keywords": [
"react",
"jsx",
"transformer",
"careless"
],
"license": "BSD-3-Clause",
"bin": {
"jsx2": "./bin/jsx2"
},
"repository": {
"type": "git",
"url": "https://github.com/HenriJ/careless"
},
"dependencies": {
"commoner": "^0.10.0",
"jstransform": "^8.0.0",
"pretty-data": "^0.40.0",
"through2": "^0.6.3"
},
"devDependencies": {
"del": "^1.1.1",
"gulp": "^3.8.10",
"merge-stream": "^0.1.6",
"vinyl-source-stream": "^1.0.0",
"jest-cli": "^0.2.1"
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": false,
"commonerConfig": {
"version": 4
},
"scripts" :
{
"test": "jest",
"prepublish" : "gulp"
},
"jest": {
"rootDir": "",
"scriptPreprocessor": "jest/preprocessor.js",
"setupEnvScriptFile": "jest/environment.js",
"modulePathIgnorePatterns": [
"/build/",
"/node_modules/",
"/.module-cache/"
],
"testPathIgnorePatterns": [
"/build/",
"/node_modules/"
],
"unmockedModulePathPatterns": [
""
]
}
}