-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "super-repo",
"version": "2.1.4",
"description": "Repository-ish pattern for your data, that implements best practices for working with and storing data on the client-side.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build:sourcemap": "babel src --out-dir lib --source-maps=inline",
"test": "npm run build:sourcemap && nyc mocha && nyc report --reporter=html && git checkout lib/index.js"
},
"nyc": {
"produce-source-map": true
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/superKalo/super-repo.git"
},
"keywords": [
"javascript"
],
"author": "Kaloyan Kosev",
"license": "MIT",
"bugs": {
"url": "https://github.com/superKalo/super-repo/issues"
},
"homepage": "https://github.com/superKalo/super-repo#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"mocha": "3.5.3",
"nyc": "11.2.1",
"sinon": "4.0.0"
}
}