This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.56 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
{
"name": "serializerjs",
"version": "1.0.0-beta",
"license": "MIT",
"homepage": "https://github.com/haircvt/serializerjs#readme",
"description": "JavaScript Serializer",
"keywords": [
"serializer",
"rest",
"transform",
"encode",
"adapter"
],
"author": "Théo FIDRY <[email protected]> (https://github.com/theofidry)",
"bugs": {
"url": "https://github.com/haircvt/serializerjs/issues"
},
"repository": {
"_type": "git",
"url": "git+https://github.com/haircvt/serializerjs.git"
},
"directories": {
"lib": "src",
"test": "tests"
},
"main": "dist/serializerjs.js",
"files": [
"index.js",
"dist",
"lib",
"src",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=0.11"
},
"scripts": {
"prepublish": "npm run build",
"preversion": "npm test",
"version": "git add -A",
"postversion": "npm publish && git push && git push --tags",
"build": "./scripts/build-releases.sh",
"doc": "node_modules/.bin/esdoc -c esdoc.json",
"lint": "node_modules/.bin/eslint src tests",
"test": "npm run test:mocha && npm run test:karma",
"test:mocha": "node_modules/mocha/bin/_mocha --compilers js:babel-core/register --ui bdd --recursive tests",
"test:karma": "node_modules/karma/bin/karma start",
"test:saucelabs": "node_modules/karma/bin/karma start karma.conf-ci.js"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.4.1",
"esdoc": "^0.4.3",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-react": "^3.15.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-derequire": "^2.1.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.5.1",
"karma": "^0.13.19",
"karma-browserify": "^5.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.5",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.3.0",
"mocha": "^2.3.4",
"path": "^0.12.7",
"phantomjs": "^2.1.3",
"phantomjs-prebuilt": "^2.1.3",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"dependencies": {
"chai": "^3.5.0",
"eslint-plugin-react": "^3.16.1",
"mocha": "^2.4.4"
}
}