-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.27 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
{
"name": "@4th-law/profile_sensor_template",
"version": "0.1.3",
"description": "A sensor profile template",
"main": "index.ts",
"repository": "[email protected]:4th-law/profile_sensor_template.git",
"author": "Hazmatius <[email protected]>",
"dependencies": {},
"devDependencies": {
"@4th-law/typings-public": "^0.1.1",
"@types/chai": "^4.1.0",
"@types/config": "^0.0.33",
"@types/mocha": "^2.2.46",
"@types/typescript": "^2.0.0",
"chai": "^4.1.2",
"codacy-coverage": "^2.0.3",
"config": "^1.29.2",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"publish": "^0.6.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"scripts": {
"2npm": "publish",
"start": "docker-compose up -d",
"predev": "cp ~/.npmrc ./.npmrc",
"dev": "docker-compose up",
"build": "docker-compose build",
"build-src": "./node_modules/.bin/tsc",
"clean-all": "rm -rf node_modules; rm yarn.lock; rm dump.rdb; rm -rf v8-compile-cache-0; find . -name '*.js' -type f -delete; find . -name '*.js.map' -type f -delete; yarn",
"build-clean": "yarn clean-all; yarn build-src",
"_test": "./test/test.sh",
"test": "NODE_ENV=config docker-compose run --rm profile yarn _test",
"tdd": "./node_modules/.bin/nodemon --exec 'yarn test'"
}
}