-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.12 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
{
"private": true,
"name": "json-api-parser",
"version": "1.0.0",
"description": "Utils module used to translate from JSON API format to plain JSON and back.",
"homepage": "https://github.com/alessandrocolleoni/json-api-parser#readme",
"repository": "alessandrocolleoni/json-api-parser",
"author": "Alessandro Colleoni <[email protected]>",
"contributors": [
"Mattia Panzeri <[email protected]>"
],
"license": "MPL-2.0",
"keywords": [
"json",
"json-api",
"parser"
],
"main": "index.js",
"jsnext:main": "index.es.js",
"babel": {
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime",
"fbjs-scripts/babel-6/dev-expression"
]
},
"dependencies": {
"babel-runtime": "^6.11.6",
"fbjs": "next"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.4.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^4.0.0-canary.1",
"coveralls": "^2.11.14",
"del": "^2.2.2",
"fbjs-scripts": "next",
"istanbul": "^1.1.0-alpha.1",
"lodash": "^4.17.4",
"mocha": "^3.1.2",
"nyc": "^11.0.2",
"rimraf": "^2.6.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^2.0.0-pre.3",
"snazzy": "^7.0.0",
"standard": "*"
},
"scripts": {
"clean": "rimraf './dist/' './.nyc_output/' './coverage/'",
"lint": "standard './src/**.js' './test/**.js' | snazzy",
"lint:fix": "standard --fix './src/**.js' './test/**.js' | snazzy",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "nyc --reporter=html --reporter=text npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "npm run test",
"build": "node tools/build",
"prepublishOnly": "npm run build"
},
"standard": {
"parser": "babel-eslint"
}
}