-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
54
55
56
{
"name": "rtype",
"version": "1.0.0",
"description": "Intuitive type notation for JavaScript.",
"main": "build/index.js",
"scripts": {
"lint": "eslint test source",
"clean": "rimraf build && mkdir build",
"prebuild": "npm run clean",
"build": "babel -d build source -s",
"test": "babel-node test/index.js",
"check": "npm run -s lint && npm -s test && npm -s run build",
"toc": "doctoc README.md",
"precommit": "git diff --staged --exit-code README.md || (npm run toc && git add README.md)",
"watch": "watch 'clear && npm run -s lint && npm -s test' source test"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/rtype.git"
},
"keywords": [
"type",
"types",
"type",
"annotation",
"annotation"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/rtype/issues"
},
"homepage": "https://github.com/ericelliott/rtype#readme",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^5.0.0-beta4",
"babel-preset-es2015": "^6.1.18",
"doctoc": "0.15.0",
"eslint": "^1.10.2",
"husky": "^0.10.2",
"rimraf": "^2.4.4",
"tape": "^4.2.2",
"watch": "^0.16.0"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"is": "3.1.0"
}
}