-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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": "atom.storage",
"version": "0.5.5",
"description": "Reactive variables with Storage",
"module": "dist/atom.storage.es.js",
"main": "dist/atom.storage.cjs.js",
"sideEffects": false,
"scripts": {
"dist": "rollup -c",
"lint": "eslint src test",
"prepare": "npm run lint && npm run dist && npm run test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmm-js/atom.storage.git"
},
"keywords": [
"atom",
"storage"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/calmm-js/atom.storage/issues"
},
"homepage": "https://github.com/calmm-js/atom.storage#readme",
"dependencies": {
"infestines": "^0.4.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-annotate-pure-calls": "^0.3.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"kefir": "^3.8.3",
"kefir.atom": "^5.5.1",
"mocha": "^5.2.0",
"node-localstorage": "^1.3.1",
"nyc": "^12.0.2",
"rollup": "^0.64.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0"
}
}