forked from ngnjs/ngn-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
47
48
49
50
51
52
53
{
"name": "ngn-data",
"version": "0.0.13",
"description": "Data modeling, stores, proxies, and utilities for NGN",
"main": "data.js",
"scripts": {
"test": "tape test/**/*.js | tap-spec && snazzy --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngnjs/ngn-data.git"
},
"keywords": [
"ngn",
"data",
"model",
"proxy",
"store"
],
"author": "Corey Butler",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ngnjs/ngn-data/issues"
},
"homepage": "https://github.com/ngnjs/ngn-data#readme",
"devDependencies": {
"babel-eslint": "^4.1.3",
"buffer-equal-constant-time": "^1.0.1",
"gulp": "^3.9.1",
"gulp-header": "^1.8.7",
"gulp-strip-comments": "^2.4.3",
"ngn": "0.3.15",
"ngn-sse": "^0.0.3",
"snazzy": "^2.0.1",
"standard": "^5.3.1",
"standard-tap": "^1.0.1",
"tap-spec": "^4.1.0",
"tape": "^4.2.2"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"_*",
"_**/*"
],
"globals": [
"NGN",
"ngn",
"LoggingMethodError",
"DuplicateLoggingMethodError"
]
}
}