-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.25 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
{
"name": "ancient-asket",
"version": "0.1.6",
"description": "Asketic abstract query language.",
"bugs": "https://github.com/AncientSouls/Asket/issues",
"repository": "AncientSouls/Asket",
"license": "MIT",
"scripts": {
"tsc": "rm -rf ./lib ./tests && ./node_modules/typescript/bin/tsc",
"test": "./node_modules/mocha/bin/mocha ./tests/index.js --require source-map-support/register",
"tslint": "./node_modules/tslint/bin/tslint -c tslint.json './src/**/*.ts'",
"dev-link": "true",
"dev-test": "(rm -rf .dev && git clone -b dev https://github.com/AncientSouls/AncientSouls.github.io.git .dev && cd .dev && git submodule init && git submodule update && npm run dev-install) && npm link ./ && (cd .dev && npm run dev-use-links && npm run dev-check)",
"np": "./node_modules/np/cli.js --no-publish --no-yarn --yolo --any-branch"
},
"dependencies": {
"lodash": "^4.17.10",
"rsvp": "^4.8.2"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^9.6.8",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"np": "^2.20.1",
"source-map-support": "^0.5.5",
"ts-node": "^6.0.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.8.3"
}
}