forked from 42Sails/typed-sails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.78 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
{
"author": {
"name": "Jimmy Cann",
"email": "https://github.com/yjimk"
},
"bugs": {
"url": "https://github.com/yjimk/types-sails/issues"
},
"bundleDependencies": false,
"dependencies": {},
"deprecated": false,
"description": "TypeScript definitions for sails",
"devDependencies": {
"blue-tape": "^0.2.0",
"onchange": "^2.2.0",
"sails": "^0.12.3",
"tap-spec": "^4.1.1",
"ts-node": "^0.7.1",
"tslint-config-typings": "^0.2.0",
"typescript": "^2.0.0",
"typings": "^1.0.4"
},
"homepage": "https://github.com/42pub/types-sails",
"license": "MIT",
"main": "./index.d.ts",
"name": "@42pub/typed-sails",
"peerDependencies": {},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/yjimk/types-sails.git"
},
"scripts": {
"build": "echo building... && npm run clean && typings bundle -o dist/index.d.ts",
"build+test": "npm run build && npm run source-test+test",
"clean": "echo cleaning... && rm -rf dist/",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"source/**\" -e \"source-test/**\" -e \"dist/**\" -e \"node_modules/**\" -e \"typings/**\"",
"lint+build": "npm run lint && npm run build",
"lint+build+test": "npm run lint && npm run build+test",
"prepublish": "typings install",
"publish2": "npm -s run lint+build && echo please publish to typings/registry",
"source-test": "echo source-testing... && echo source-test is not specified",
"source-test+test": "npm run source-test && npm test",
"test": "echo testing... && npm run build && cd test && ts-node ../node_modules/blue-tape/bin/blue-tape \"**/*.ts\" | tap-spec",
"watch": "onchange \"**/*.ts\" -i -e \"dist/**\" -- npm -s run build+test"
},
"typeScriptVersion": "2.0",
"version": "1.0.0"
}