-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
{
"name": "typecase",
"version": "1.1.3",
"description": "A dynamic type checker for JavaScript",
"main": "dist/typecase.umd.js",
"jsnext:main": "dist/typecase.js",
"repository": "git@github.com:julienetie/typecase.git",
"author": "Julien Etienne <j8@protonmail.ch>",
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/rollup -c ./rollup/config.es.js && ./node_modules/.bin/rollup -c ./rollup/config.umd.js ",
"test": "tape -r babel-register ./test/**/**.js | faucet",
"lint": "./node_modules/.bin/eslint ./src"
},
"keywords": [
"dynamic type checker",
"types",
"object types",
"element types",
"check type",
"types es6",
"typeis",
"type is",
"type check",
"type checker",
"javascript type checker",
"type validation",
"smart type check",
"typeof",
"type of"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-register": "^6.26.0",
"eslint": "^4.7.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsdoc": "^3.5.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"faucet": "^0.0.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"tape": "^4.8.0"
}
}