-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.85 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
{
"name": "angular-sql-query",
"description": "Make simple query on a SQLite database",
"version": "2.4.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/SimpliField/angular-sql-query"
},
"scripts": {
"compile": "gulp compile",
"version": "gulp compile && git add .",
"test": "gulp compile && karma start && git checkout angular-sql-query.js angular-sql-query.min.js ",
"cli": "env NPM_RUN_CLI=1",
"cover": "gulp compile && karma start karma.conf.js --single-run --reporters coverage",
"codacy": "npm run cover && npm run codacy:send",
"codacy:send": "cat ./coverage/report-lcov/lcov.info | ./node_modules/.bin/codacy-coverage",
"coveralls": "npm run cover && npm run coveralls:send",
"coveralls:send": "cat ./coverage/report-lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": {
"name": "Arnaud Spanneut <arnaud.spanneut@simplifield.com>"
},
"license": "MIT",
"devDependencies": {
"@types/angular": "^1.6.57",
"@types/websql": "^0.0.27",
"babel": "^6.23.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-es2015": "6.24.1",
"bower": "1.8.0",
"chai": "4.1.2",
"codacy-coverage": "2.0.2",
"coveralls": "2.13.1",
"eslint": "4.6.1",
"eslint-config-simplifield": "6.0.0",
"gulp": "4.0.2",
"gulp-babel": "7.0.0",
"gulp-concat": "2.6.1",
"gulp-eslint": "4.0.0",
"gulp-load-plugins": "1.5.0",
"gulp-ng-annotate": "2.0.0",
"gulp-uglify": "3.0.0",
"karma": "4.4.1",
"karma-babel-preprocessor": "6.0.1",
"karma-coverage": "2.0.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.4",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon-chai": "1.3.2",
"mocha": "3.5.0",
"phantomjs-prebuilt": "2.1.14",
"sinon": "3.2.1",
"sinon-chai": "2.13.0"
}
}