forked from mobxjs/serializr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "serializr",
"version": "1.2.0",
"description": "Serialize and deserialize complex object graphs to JSON",
"main": "lib/serializr.js",
"module": "lib/es/serializr.js",
"typings": "serializr.d.ts",
"scripts": {
"test": "npm run build-test && node test/index",
"lint": "eslint src",
"prepublish": "npm run build && npm run build-docs",
"build": "node scripts/build.js",
"build-docs": "documentation readme src/serializr.js --github --section API",
"build-test": "npm run build-test-babel && npm run build-test-ts",
"build-test-ts": "tsc -p test/typescript",
"build-test-babel": "babel test/babel/babel.js -o test/babel/babel-compiled.js",
"coverage": "npm run build-test && istanbul cover tape test/*.js"
},
"keywords": [
"serialize",
"deserialize",
"graph",
"json",
"mobx"
],
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/serializr.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/serializr/issues"
},
"files": [
"lib",
"serializr.d.ts"
],
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"coveralls": "^2.11.9",
"documentation": "^4.0.0-beta9",
"eslint": "^2.12.0",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.4",
"lodash.merge": "^4.6.0",
"mobx": "^2.4.1 || ^3.0.0",
"rollup": "^0.49.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"tape": "^4.5.1",
"typescript": "^2.1.4",
"uglify-js": "^2.6.4"
}
}