-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 874 Bytes
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
{
"name": "stringcaster",
"version": "0.3.1",
"description": "Cast strings into any kind of JavaScript primitive type",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/arturmuller/stringcaster.git"
},
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"build": "babel index.js -d dist --ignore *.test.js",
"prepublishOnly": "npm test && npm run clean && npm run build"
},
"keywords": [
"schema",
"string",
"cast",
"convert",
"type",
"types"
],
"author": "Artur Muller <me@arturmuller.com> (http://arturmuller.com)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-preset-latest": "^6.22.0",
"eslint": "^3.19.0",
"eslint-config-lusk": "^1.0.3",
"jest": "^20.0.4",
"rimraf": "^2.6.1"
}
}