forked from ludbek/powerform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "powerform",
"version": "3.1.4",
"description": "A powerful form model.",
"main": "lib/index.js",
"scripts": {
"test": "jest index.test.js",
"build": "babel --config .babelrc index.js --out-dir lib",
"prepublish": "npm run test && npm run build"
},
"files": [
"index.js",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ludbek/powerform.git"
},
"bugs": {
"url": "https://github.com/ludbek/powerform/issues"
},
"homepage": "https://github.com/ludbek/powerform#readme",
"keywords": [
"form",
"mithril",
"react"
],
"author": "ludbek",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-jest": "^21.2.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.5",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"webpack": "^1.12.14"
},
"transform": {
"^.+\\.js$": "babel-jest"
}
}