-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "poc",
"version": "0.0.0",
"description": "",
"main": "lib/main/index.js",
"scripts": {
"lint": "npm run lint:main && npm run lint:test",
"lint:main": "eslint src/main --fix",
"lint:test": "eslint src/test --fix",
"prepare": "npm run prepare:main && npm run prepare:test",
"prepare:main": "babel src/main --out-dir lib/main",
"prepare:test": "babel src/test --out-dir lib/test",
"test": "tape lib/test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/implicitjs/poc.git"
},
"keywords": [
"implicit",
"type",
"conversion"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/implicitjs/poc/issues"
},
"homepage": "https://github.com/implicitjs/poc#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-parameter-decorators": "^1.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"tape": "^4.8.0"
},
"private": true
}