-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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": "@collectable/map",
"version": "4.0.1",
"description": "[Collectable.js] Immutable Map",
"main": "lib/commonjs/index.js",
"module": "lib/es2015/index.js",
"jsnext:main": "lib/es2015/index.js",
"typings": "lib/es2015/index.d.ts",
"scripts": {
"clean": "rimraf ./lib ./.build",
"build-cjs": "tsc -p tsconfig.commonjs.json",
"build-es2015": "tsc -p tsconfig.es2015.json",
"build-tests": "tsc -p tsconfig.tests.json",
"build": "npm run build-cjs && npm run build-es2015 && npm run build-tests",
"lint": "tslint -p tsconfig.es2015.json && tslint -p tsconfig.tests.json",
"test": "ava --timeout=30s --tap",
"test-dev": "ava --timeout=30s --fail-fast --watch"
},
"files": [
"lib"
],
"contributors": [
"Nathan Ridley <axefrog@gmail.com>"
],
"license": "MIT",
"bugs": "https://github.com/frptools/collectable/issues",
"repository": "git@github.com:frptools/collectable.git",
"dependencies": {
"@collectable/core": "^5.0.1"
},
"devDependencies": {
"@frptools/config": "^1.0.0",
"@types/node": "^9.3.0",
"ava": "^0.24.0",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"ava": {
"files": [
".build/tests/**/*.js"
],
"source": [
".build/**/*.js"
]
}
}