This repository was archived by the owner on Oct 6, 2021. It is now read-only.
forked from cbgaindia/story-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.56 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.56 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name" : "story-generator",
"version" : "0.0.1",
"description" : "StoryGenerator - CBGA India's Budget Analysis Tool",
"main" : "./lib/bat.js",
"repository" : {
"type": "git",
"url" : "git://github.com/cbgaindia/story-generator.git"
},
"scripts" : {
"test" : "npm run tests",
"tests" : "./node_modules/.bin/mocha",
"coverage" : "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"assets-tests" : "./node_modules/.bin/jest",
"assets-coverage": "./node_modules/.bin/jest --coverage",
"start" : "./node_modules/.bin/gulp serve"
},
"keywords" : [
"bat",
"cbga",
"story",
"generator",
"story-generator",
"buget",
"analysis",
"tool"
],
"author" : "CBGA & DataKind Team",
"license" : "MIT",
"dependencies" : {
"bootstrap" : "~3.3.6",
"browserify" : "~13.0.0",
"browserify-incremental": "~3.1.1",
"browserify-shim" : "~3.8.12",
"express" : "~4.13.4",
"fuse.js" : "~2.2.0",
"history" : "~1.13.1",
"jquery" : "~2.2.2",
"lodash" : "~4.7.0",
"react" : "~0.14.8",
"react-addons-update" : "~0.14.8",
"react-d3-basic" : "~1.6.11",
"react-dom" : "~0.14.8",
"react-router" : "~2.0.1"
},
"devDependencies": {
"babel-jest" : "~10.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "~6.7.4",
"babel-plugin-transform-object-rest-spread" : "~6.6.5",
"babel-plugin-transform-react-constant-elements": "~6.5.0",
"babel-preset-es2015" : "~6.6.0",
"babel-preset-react" : "~6.5.0",
"babelify" : "~7.2.0",
"command-line-args" : "~2.1.6",
"command-line-usage" : "~2.0.5",
"coveralls" : "~2.11.9",
"del" : "~2.2.0",
"gulp" : "~3.9.1",
"gulp-buffer" : "~0.0.2",
"gulp-compile-handlebars" : "~0.6.1",
"gulp-jscs" : "~3.0.2",
"gulp-jshint" : "~2.0.0",
"gulp-nodemon" : "~2.0.6",
"gulp-rename" : "~1.2.2",
"gulp-rev" : "~7.0.0",
"gulp-sass" : "~2.2.0",
"gulp-sourcemaps" : "~1.6.0",
"gulp-streamify" : "~1.0.2",
"gulp-uglify" : "~1.5.3",
"gulp-util" : "~3.0.7",
"istanbul" : "~0.4.3",
"jest" : "~0.1.40",
"jest-cli" : "~0.10.0",
"jscs" : "~2.11.0",
"jshint" : "~2.9.1",
"jshint-stylish" : "~2.1.0",
"mocha" : "~2.4.5",
"mocha-cli" : "~1.0.0",
"react-addons-test-utils" : "~0.14.8",
"run-sequence" : "~1.1.5",
"should" : "~8.3.1",
"vinyl-source-stream" : "~1.1.0",
"watchify" : "~3.7.0"
},
"engines" : {
"node": "~4.4.5"
},
"jest" : {
"scriptPreprocessor" : "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"react",
"react-native",
"babel",
"browserify",
"./*.jsx"
],
"testFileExtensions" : [
"js",
"jsx"
],
"moduleFileExtensions" : [
"js",
"jsx",
"json"
]
},
"browserify" : {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread",
"transform-es2015-modules-commonjs",
"transform-react-constant-elements"
]
}
]
]
}
}