-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1018 Bytes
/
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
{
"name": "elm-local-storage-ports",
"version": "0.3.0",
"description": "Generic Elm ports for interacting with LocalStorage",
"main": "lib/js/local-storage-ports.js",
"scripts": {
"build": "node_modules/babel-cli/bin/babel.js src/ --out-dir lib/js/",
"test": "jest",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulstatezny/elm-local-storage-ports.git"
},
"keywords": [
"Elm",
"ports",
"localstorage",
"local storage"
],
"author": "Consolidated Knowledge",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulstatezny/elm-local-storage-ports/issues"
},
"homepage": "https://github.com/paulstatezny/elm-local-storage-ports#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"jest": "^18.1.0"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"testRegex": "/test/.*\\.test\\.js$"
}
}