-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "queez",
"version": "0.1.5",
"description": "A simple Javascript library to create quizz",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/arncet/queez"
},
"keywords": [
"quiz",
"quizz",
"survey",
"queez"
],
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-2"
]
}
]
]
},
"author": "Arnaud Cetoute <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arncet/queez/issues"
},
"homepage": "https://github.com/arncet/queez",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.13.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"gulp": "^3.9.1",
"gulp-notify": "^2.2.0",
"gulp-uglify": "^3.0.0",
"mocha": "^3.1.0",
"pump": "^1.0.2",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"dependencies": {
"lodash.get": "^4.3.0",
"lodash.groupby": "^4.4.0"
},
"scripts": {
"lint": "eslint src/*;",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register;",
"copy-readme": "cp -R README.md dist/",
"copy-package": "cp -R package.json dist/",
"gulp-build": "./node_modules/.bin/gulp build",
"gulp-compress": "./node_modules/.bin/gulp compress",
"pub": "npm run test && npm run gulp-build && npm run gulp-compress && npm run copy-readme && npm run copy-package && cd dist && npm publish"
}
}