-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1000 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
{
"name": "sinap-types",
"description": "The type and object system for Sinap",
"version": "0.4.0",
"readme": "README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/2graphic/sinap-types"
},
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/!(test-)*"
],
"scripts": {
"format": "tsfmt -r && tslint --fix --project .",
"lint": "tsfmt --verify && tslint --project .",
"build": "tsc -p .",
"test:nobuild": "mocha --colors lib/test-*.js",
"test": "npm run build && npm run test:nobuild",
"prepublishOnly": "npm run lint && npm run test"
},
"devDependencies": {
"@types/node": "^7.0.12",
"chai": "^3.5.0",
"@types/chai": "^3.4.35",
"mocha": "^3.2.0",
"@types/mocha": "^2.2.40",
"tslint": "^4.5.1",
"typescript": "^2.2.2",
"typescript-formatter": "^5.1.2",
"typings": "^2.1.0"
},
"dependencies": {
"uuid": "^3.0.1",
"@types/uuid": "^2.0.29"
}
}