-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "should-type-adaptors",
"version": "1.1.0",
"description": "Small utility functions to use the same traversing etc code on different types",
"main": "cjs/should-type-adaptors.js",
"jsnext:main": "es6/should-type-adaptors.js",
"dependencies": {
"should-type": "^1.3.0",
"should-util": "^1.0.0"
},
"devDependencies": {
"eslint": "^3.2.2",
"eslint-config-shouldjs": "^1.0.2",
"rollup": "^0.34.7"
},
"scripts": {
"cjs": "rollup --format=cjs --output=cjs/should-type-adaptors.js index.js",
"es6": "rollup --format=es --output=es6/should-type-adaptors.js index.js",
"build": "npm run --silent cjs && npm run --silent es6",
"prepublish": "npm run --silent build",
"pretest": "npm run --silent build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shouldjs/type-adaptors.git"
},
"keywords": [
"shouldjs",
"type"
],
"author": "Denis Bardadym <bardadymchik@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shouldjs/type-adaptors/issues"
},
"homepage": "https://github.com/shouldjs/type-adaptors#readme",
"files": [
"cjs/*",
"es6/*",
"README.md",
"LICENSE"
]
}