-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 2.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "os-packager",
"version": "0.0.1",
"description": "A Fiscal Data Packager application",
"keywords": [],
"main": "index.js",
"scripts": {
"start": "lookenv --dotenv -- node index.js",
"start:dev": "nodemon npm run develop",
"test:mocha": "lookenv --dotenv=.env.test -- mocha tests/**/test_*.js",
"test:karma": "karma start",
"test": "npm run test:mocha && npm run test:karma",
"posttest": "npm run review",
"review": "eslint app tests index.js gulpfile.js webpack.config.js",
"develop": "npm run build && npm start",
"build:assets": "gulp",
"build:app": "webpack --hide-modules --config webpack.config.js",
"build": "npm run build:assets && npm run build:app"
},
"engines": {
"node": "^8.7.0",
"npm": "^5.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openspending/os-packager.git"
},
"author": {
"name": "Open Knowledge",
"email": "info@okfn.org",
"url": "https://okfn.org/"
},
"contributors": [
{
"name": "Levko Kravets",
"email": "kravets@qarea.com"
}
],
"license": "MIT",
"bugs": "https://github.com/openspending/os-packager/issues",
"homepage": "https://github.com/openspending/os-packager#readme",
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-route": "^1.5.5",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"crypto-js": "^3.1.6",
"datapackage": "^1.0.0",
"express": "^4.13.3",
"font-awesome": "^4.4.0",
"goodtables": "^1.0.0",
"goodtables-ui": "^1.1.3",
"inflected": "^1.1.6",
"isomorphic-fetch": "^2.2.0",
"jquery": "^2.0.0",
"js-polyfills": "^0.1.12",
"jsontableschema": "0.1.0",
"less": "^2.7.3",
"lodash": "^4.11.1",
"lookenv": "^0.6.3",
"marked": "~0.3.9",
"nconf": "^0.8.2",
"nunjucks": "^2.1.0",
"os-bootstrap": "openspending/os-bootstrap.git",
"os-styles": "^0.0.2",
"os-types": "1.15.2",
"papaparse": "^4.6.1",
"raven": "^2.2.1",
"raven-js": "^3.22.3",
"request": "^2.65.0",
"typeahead.js": "^0.11.1",
"typeahead.js-bootstrap-css": "bassjobsen/typeahead.js-bootstrap-css",
"validator": "^4.2.1"
},
"devDependencies": {
"angular-mocks": "^1.6.9",
"chai": "^3.4.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.13.1",
"eslint-config-google": "^0.7.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-clean-css": "^2.0.0",
"gulp-concat": "^2.6.0",
"gulp-less": "^3.3.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-watch": "^4.3.5",
"json-loader": "^0.5.4",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^2.3.3",
"nodemon": "^1.17.2",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"webpack": "^1.14.0",
"xmlhttprequest": "^1.8.0",
"zombie": "^5.0.6"
}
}