-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 979 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": "inferno-ace",
"version": "1.1.0",
"description": "Code editor using Ace for Inferno",
"main": "dist/index.js",
"module": "index.js",
"scripts": {
"build": "webpack",
"test": "jest --watch",
"test:prod": "jest",
"lint": "eslint .",
"prepublish": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"brace": "^0.11.0"
},
"devDependencies": {
"enzyme-adapter-inferno": "^0.1.0",
"eslint": "^4.14.0",
"eslint-plugin-inferno": "^7.4.0",
"eslint-plugin-jest": "^21.5.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-inferno": "^3.3.1",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"buble": "^0.18.0",
"enzyme": "^3.2.0",
"inferno-component": "^3.10.1",
"jest": "^22.0.4",
"webpack": "^3.10.0"
},
"jest": {
"moduleNameMapper": {
"brace": "<rootDir>/mocks/brace.js"
}
}
}