-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.24 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
{
"author": "Simone Civetta",
"dependencies": {},
"description": "Convert JSON to Swift entities",
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.6",
"eslint": "^2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-browserify": "^0.5.1",
"gulp-eslint": "^2.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-mocha": "^2.2.0",
"gulp-rimraf": "^0.2.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"run-sequence": "^1.1.5"
},
"keywords": [
"swift",
"json"
],
"license": "MIT",
"main": "js2swift.js",
"name": "json2swift",
"repository": {
"type": "git",
"url": "https://github.com/viteinfinite/json2swift.git"
},
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js launch-tests",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec build/test/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"version": "1.0.0"
}