-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "form-builder",
"version": "0.0.1",
"description": "Form builder library",
"homepage": "http://tsv2013.github.io/form-builder",
"authors": [
"Serge T <@domain.com>"
],
"private": false,
"license": "MIT",
"main": "dist/form-builder.js",
"keywords": [
"expression",
"evaluator"
],
"moduleType": "umd",
"ignore": [
".travis.yml",
".coveralls.yml",
".bithoundrc",
"deploy-ghpages.cmd"
],
"repository": {
"type": "git",
"url": "https://github.com/tsv2013/form-builder.git"
},
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack",
"test": "jest",
"testDev": "jest --watch",
"release": "standard-version --message \"Release: %s\""
},
"dependencies": {
"knockout": "^3.5.0"
},
"devDependencies": {
"@types/jest": "^23.3.3",
"@types/knockout": "^3.4.60",
"@types/node": "^7.0.5",
"css-loader": "^2.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"json-loader": "latest",
"node-sass": "^4.14.1",
"sass-loader": "^7.1.0",
"standard-version": "^8.0.1",
"style-loader": "^0.23.1",
"text-loader": "0.0.1",
"ts-jest": "^23.10.3",
"ts-loader": "latest",
"typescript": "latest",
"underscore": "^1.8.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.0"
}
}