-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 911 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
{
"name": "laravel-form-js",
"version": "1.0.3",
"description": "A javascript representation of a form",
"main": "dist/Form.js",
"scripts": {
"test": "node ./node_modules/jest/bin/jest",
"build": "node ./node_modules/babel-cli/bin/babel src --out-dir dist",
"preversion": "npm test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santigarcor/form-js.git"
},
"keywords": [
"form"
],
"author": "Santiago Garcia (http://santigarcor.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/santigarcor/form-js/issues"
},
"homepage": "https://github.com/santigarcor/form-js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.2.1",
"moxios": "^0.4.0"
},
"dependencies": {
"axios": "^0.16.2"
}
}