-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "know",
"version": "1.1.5",
"description": "A data structure cache that knows what it doesn’t know.",
"main": "dist/Cache.js",
"scripts": {
"build": "babel -sd dist/ lib/",
"clean": "rm -rf dist/",
"test": "ava",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belng/know.git"
},
"author": "belong",
"license": "MIT",
"bugs": {
"url": "https://github.com/belng/know/issues"
},
"homepage": "https://github.com/belng/know#readme",
"dependencies": {
"jsonop": "^3.0.1",
"juri": "^1.0.2",
"setimmediate": "^1.0.4"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-polyfill": "^6.8.0",
"babel-preset-react-native": "^1.7.0",
"babel-register": "^6.8.0",
"eslint": "^2.9.0",
"eslint-import-resolver-webpack": "^0.2.4",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.6.1"
},
"ava": {
"files": [
"**/*.test.js"
],
"require": [
"babel-register",
"babel-polyfill"
]
}
}